Computer Science, asked by anupriyaambika51241, 2 months ago

Write a program in Python to find the product of two numbers x and y, where
x=15 and y=150.

Answers

Answered by atrs7391
2

x = 15

y = 150

print("The product =", x*y)

Similar questions