请用户输入两个数字(a和b)计算着两个数字的和,差,积,商整数商,余数。以及a的b次幂
a,b=eval(input()) print(a+b) print(a-b) print(a*b) print(a/b) print(a//b) print(a%b) print(a**b)