Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87098 丁俊杰 求x的n次方 Python3 Accepted 34 MS 3760 KB 87 2024-08-03 21:46:33

Tests(2/2):


Code:

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