/
rnekrasov
/
Python
Обзор
Документация
Войти
/
rnekrasov
/
Python
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
gcd.py
14 строк
357 B
slowy07
refactor: clean code
30 янв 2022, 04:33
30 янв 2022, 04:33
f0af0c4
Код
Авторство
О чём код?
""" although there is function to find gcd in python but this is the code which takes two inputs and prints gcd of the two. """ a = int(input("Enter number 1 (a): ")) b = int(input("Enter number 2 (b): ")) i = 1 while i <= a and i <= b: if a % i == 0 and b % i == 0: gcd = i i = i + 1 print("\nGCD of {0} and {1} = {2}".format(a, b, gcd))