17 lines
320 B
Python
17 lines
320 B
Python
#!/usr/bin/env python3
|
|
import sys
|
|
import math
|
|
|
|
try:
|
|
t = int(input("Ange täljaren: "))
|
|
n = int(input("Ange nämnaren: "))
|
|
except ValueError:
|
|
sys.exit("Ange endast heltal")
|
|
|
|
sgd = math.gcd(t, n)
|
|
|
|
print("SGD är:", str(sgd))
|
|
print(str(t) + "/" + str(n), "=", \
|
|
str(int(t/sgd)) + "/" + str(int(n/sgd)))
|
|
|