def f(n): res=1 for i in range(1,n+1):res*=i return res a,b=map(int,input().split()) print(f(a|b))