A = int(input())
B = int(input())
if A == B == 0:
  print(0)
  exit()

print(A**B)