Problem5767--快速幂

5767: 快速幂

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

Description

给你两个整数 $a,\ b$,求 $a^b$。

Input

输入只有一行两个整数,分别代表 $a,\ b$。

Output

一行一个整数,表示答案。保证答案在 long long 范围内。

Constraints

对于 $100\%$ 的数据,保证 $0\le a,\ b < 2^{31},\ a+b>0$。

Sample 1 Input

2 10

Sample 1 Output

1024

$2^{10}=1024$。

Sample 2 Input

10002 0

Sample 2 Output

1

Sample 3 Input

5 15

Sample 3 Output

30517578125

Source/Category