3001 - 指数运算

通过次数

310

提交次数

771

Time Limit : 1 秒
Memory Limit : 128 MB

输入两个正整数x和y,输出x的y次方的值

Input

输入x和y,保证在int范围内。

Output

输出对应的幂的值,保证在int范围内。

Examples

Input

3 2

Output

9