Integer Power
Given integers \(x,y\), compute \(x^y\).
Input
One line containing \(x\) and \(y\).
The input satisfies:
- \(1 <= x, y <= 12\)
Output
Print \(x^y\).
Example
Input
2 2
Output
4
Given integers \(x,y\), compute \(x^y\).
One line containing \(x\) and \(y\).
The input satisfies:
Print \(x^y\).
2 2
4
Comments