Read n lines of base,exp. Print base^exp for each.
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
3 2,3 5,2 10,0
Output
8 25 1