trick,treat = map(int,input().split()) def fact(x): if x == 0: return 1 else: return x * fact(x - 1) print(fact(trick|treat))