#AT2421. A - Power
A - Power
当前没有测试数据。
A - Power
Score : $100$ points
Problem Statement
Given integers $A$ and $B$, print the value $A^B$.
Constraints
- $1 \leq A, B \leq 9$
- All values in the input are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the answer.
4 3
64
$4^3 = 64$, so $64$ should be printed.
5 5
3125
8 1
8