Answers for "write a program to take input from user in python and multiply"

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 "write a program to take input from user in python and multiply"

Python Answers by Framework

Browse Popular Code Answers by Language