-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreatest common devisor.py
32 lines (29 loc) · 1.27 KB
/
Greatest common devisor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
while True:
while True:
try:
a = float(input("\nPlease Enter the First Value:"))
b = float(input("\nPlease Enter the Second Value:"))
except ValueError:
print("\nPlease enter only number")
else:
break
i = 1
while(i <= a and i <= b):
if(a % i == 0 and b % i == 0):
gcd = i
i = i + 1
print("\nGCD of given integers {0} and {1} is {2}.".format(a, b, gcd))
while True:
Repeat=input("\nDo you want to calculate again?\n\nYes or No:")
Repeat=Repeat.lower()
if Repeat not in ["yes","y","no","n"]:
print("\nPlease select correct option")
else:
break
if Repeat in ["yes","y"]:
continue
else:
if Repeat in ["no","n"]:
print("\n-----Thank you for using-----")
input()
break