#abc283a. [abc283_a]Power

[abc283_a]Power

Problem Statement

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

Constraints

  • 1leqA,Bleq91 \\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.


Sample Input 1

4 3

Sample Output 1

64

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


Sample Input 2

5 5

Sample Output 2

3125

Sample Input 3

8 1

Sample Output 3

8