题解 | #数学幂运算#
数学幂运算
https://www.nowcoder.com/practice/eeb02352695342caaa4d1df269c34f30
# import math # math模块参数转换成float# number = [int(i) for i in input().split()]# x = number[0]# y = number[1]x,y = map(int, input().split())print(pow(x,y))print(pow(y,x))