from math import gcd


a,b = map(int,input().split())
print(gcd(a+b,a*b))