Comment multiplier les entrées dans Python
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)
A General Coder