题解 | #乘法与幂运算#
乘法与幂运算
https://www.nowcoder.com/practice/2b0e586dfdbe4da4aabccbc94a4f7224
# print 格式化输出不太会了,好心人可以留一个讲的明白的链接
x = int(input())
y = int(input())
# 1
# print(x*y)
# print(x**y)
# 2
# print("%d\n%d"%(x*y,x**y))
# 3
print("{0}\n{1}".format(x*y,x**y))
