def gcd(a, b): if a % b == 0: return b else: return gcd(b, a % b) def main(): A, B = [int(_) for _ in input().split()] print(gcd(A+B, A*B)) main()