題目

while True: try: a, b = input().split() a, b = int(a), int(b) print(a ** b) except: break