Problem9170--ABC283 —— A - Power

9170: ABC283 —— A - Power

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Given integers $A$ and $B$, print the value $A^B$.

Input

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

```
$A$ $B$
```

Output

Print the answer.

Constraints

-   $1 \leq A, B \leq 9$
-   All values in the input are integers.

Sample 1 Input

4 3

Sample 1 Output

64
$4^3=64$, so 64 should be printed.

Sample 2 Input

5 5

Sample 2 Output

3125

Sample 3 Input

8 1

Sample 3 Output

8

HINT

相同题目:ABC283

Source/Category