题解 | #数学幂运算#
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
a=input().split() b=pow(int(a[0]),int(a[1]))#幂运算 c=pow(int(a[1]),int(a[0])) print(b,c,sep='\n')
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
a=input().split() b=pow(int(a[0]),int(a[1]))#幂运算 c=pow(int(a[1]),int(a[0])) print(b,c,sep='\n')
相关推荐