#函数用于计算任意个输入数字的乘积 def cmul(a, *b): m = a for i in b: m *= i return m print(eval("cmul({})".format(input())))
为何_
相关分类