📅  最后修改于: 2022-03-11 14:46:26.925000             🧑  作者: Mango
x = input("give me the number you want to multiply")
y = input("give me the second number you want to multiply")
y = int(y)
x = int(x)
print (y * x)