Answers for "how to multiply input in python"

2

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)
Posted by: Guest on June-04-2020

Code answers related to "how to multiply input in python"

Python Answers by Framework

Browse Popular Code Answers by Language