A = int(input()) B = int(input()) if A == 0: print(0) elif A == 1: print(1) else: print(A ** B)