Problem D: 乘方计算

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:19 Solved:13

Description

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

Input

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

Output

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

Sample Input Copy

2 3

Sample Output Copy

8