Computer Science, asked by rs2559298, 7 months ago

find the
Write
a program
to
product of two numbers x and y
where x = 150 and y=200.

X=150
Y=200
Z=X*Y

The product of two number is 30,000

Answers

Answered by priyans0531x
18

Explanation:

using Script Mode: Write a program to find the product of two numbers x and y, where 150 and y=200.

Answer:This is in PythonExplanation:x=150y=200prdt=x*yprint("The product is",prdt)

Answered by KajalBarad
7

The program to product two numbers x and y are as follow:-

Firstly, open the script mode of python Programming software

Then type,

X = 150

Y = 200

Z = X*Y

Print,(The product of two numbers is =,z)

So, when you enter these inputs you will get the result as

X=150

Y=200

The product of two numbers is = 30,000

Similar questions