Computer Science, asked by wwwapmeena2615, 7 months ago

a write the code for the following programs using Script Mode:
Write a program to find the product of two numbers x and y, where 150 and y=200.​

Answers

Answered by uditya204
4

Answer:

This is in Python

Explanation:

x=150

y=200

prdt=x*y

print("The product is",prdt)

Answered by ArcahanaTR
2

Answer:

here is  ur answer

Explanation:

x=150

y=200

z=x*y

print("product=",z)

Similar questions