48 18
6
def gcd(a, b): if b == 0: return a return gcd(b, a % b) a, b = map(int, input().split()) print(gcd(a, b))