import math N = int(input()) if N <= 50: ans = str(math.factorial(N)) if len(ans) > 12: ans = ans[len(ans)-12:] else: ans = "000000000000" print(ans)