Computer Science, asked by kelsss, 3 months ago

write a program to input two numbers and find their product​

Answers

Answered by PrimarineRose
0

Answer:

Explanation:

x = int(input("Please Enter First Number: "))

y =int(input("Please Enter Second Number: "))

z = x*y

print(z)

Similar questions