#41910: python解


chenwei980503@gmail.com (陳維(Z))

學校 : 新北市立北大高級中學
編號 : 278351
來源 : [101.10.97.141]
最後登入時間 :
2025-09-29 19:33:05

while True:
n, m=map(int, input().split())
if n==0 and m==0:
break
print(pow(n, m)) # n的m次方