题目描述

Write a function integerPower(base, exponent) that returns the value of:
$base^{exponent}$
For example, integerPower(3, 4) = 3 3 3 * 3. Assume that exponent is a positive, nonzero integer and that base is an integer. Do not use any math library functions.


输入格式

Input two numbers and end at -1.


输出格式


样例数据

输入

2 6
2 4
2 2
-1

输出

64
16
4

备注


操作

评测记录

优秀代码

信息

时间限制: 1s
内存限制: 128MB
评测模式: Normal

题解