1554: 1.5-13:乘方计算
Memory Limit:64 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:364
Solved:273
Description
给出一个整数a和一个正整数n,求乘方an。
Input
一行,包含两个整数a和n。-1000000 <= a <= 1000000,1 <= n <= 10000。
Output
一个整数,即乘方结果。题目保证最终结果的绝对值不超过1000000。
Sample Input Copy
2 3
Sample Output Copy
8