A=int(input())
B=int(input())

if A==B==0:
    print(0)
else:
    print(A**B)