#ABC283A. [ABC283A] Power

[ABC283A] Power

Score : 100100 points

Problem Statement

Given integers AA and BB, print the value ABA^B.

Constraints

  • 1A,B91 \leq A, B \leq 9
  • All values in the input are integers.

Input

The input is given from Standard Input in the following format:

AA BB

Output

Print the answer.

4 3
64

43=644^3 = 64, so 6464 should be printed.

5 5
3125
8 1
8