Run ID:87098

提交时间:2024-08-03 21:46:33

def cifang(x,n): return x**n x,n=map(int,input().split()) print(cifang(x,n))