题解 | #数学幂运算#
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
a, b = map(int, input().split()) print(pow(a, b)) print(pow(b, a))
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
a, b = map(int, input().split()) print(pow(a, b)) print(pow(b, a))
相关推荐