Competitions
DSA Week 1
Exponentiation
Find the value of x^n
.
Input data
Two positive integers x and n.
Output data
Print the value of x^n
, if it does not exceed 10^18
.
Examples
Input example #1
2 10
Output example #1
1024