def gcd(a, b): if b == 0: return a return gcd(b, a % b) a, b = map(int, input().split()) s, p = a + b, a * b print(gcd(s, p))