In the last contest, you were asked to find the last digit of a very large number. This time, you are asked to find the entirety of a much smaller number: your task is to find the first number taken to the power of second number. A brute force approach does work here.
The only line of input contains two space-separated integers n and k, 1 <= n, k <= 10.
Output a single integer: the number $$$n^{k}$$$.
3 5
243