a, b = map(int, input("Введите два числа: ").split())
def gcd(a, b):while b:a, b = b, a % breturn a
result = gcd(a, b)print(f"НОД({a},{b})={result}")
a, b = map(int, input("Введите два числа: ").split())
def gcd(a, b):
while b:
a, b = b, a % b
return a
result = gcd(a, b)
print(f"НОД({a},{b})={result}")