eolymp
Competitions

DSA Week 1

Exponentiation

Time limit 1 second
Memory limit 128 MiB

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