📅  最后修改于: 2022-03-11 14:46:43.026000             🧑  作者: Mango
#Addition Calculator
a = "Type Number Here"
b = "Type Another Number"
print (a * b)
""""
#Subtraction Calculator
c = "Type Number Here"
d = "Type Another Number"
print (c * d)
#Multiplication Calculator
e = "Type Number Here"
f = "Type Another Number Here"
print (e * f)
#Division Calculator
g = "Type Number Here"
h = "Type Another Number"
print (g * h)
"""