python multiplying inputs code example
Example: how to multiply inputs in 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)
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)