1296: 乘方计算
Memory Limit:256 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:183
Solved:122
Description
给出一个整数a和一个正整数n(-1000000≤a≤1000000,0≤n≤10000),求乘方,即乘方结果。最终结果的绝对值不超过1000000。
Input
一行,包含两个整数a和n。-1000000≤a≤1000000,0≤n≤10000。
Output
一个整数,即乘方结果。题目保证最终结果的绝对值不超过1000000。
Sample Input Copy
2 3
Sample Output Copy
8