2193: 乘方计算

Memory Limit:128 MB Time Limit:1.000 S
Creator:
Submit:3 Solved:2

Description

给出一个整数a和一个正整数n,求乘方an

Input

一行,包含两个整数a和n。-1000000 <= a <= 1000000,1 <= n <= 10000。

Output

一个整数,即乘方结果。题目保证最终结果的绝对值不超过1000000。

Sample Input

2 3

Sample Output

8