map映射转换
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
x, y = map(int, input().split()) print(x ** y, pow(y, x), sep='\n')
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
x, y = map(int, input().split()) print(x ** y, pow(y, x), sep='\n')
相关推荐