题解 | #数学幂运算#
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
x,y=[int(i) for i in input().split()]
print(x**y)
print(pow(y,x))
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
x,y=[int(i) for i in input().split()]
print(x**y)
print(pow(y,x))
相关推荐