Computer Science, asked by mahiKatiyar, 3 months ago

make the program using the Script Mode Write a program to find the product of two numbers X and Y, where

X=150 and Y=200 in Python​

Answers

Answered by Anonymous
0

Answer:

hello,

Explanation:

# program using python  to find the product of two numbers

X=150

Y=200

prod=X*Y

print("the product of 150 and 200 is :",prod)

_______________

hope it helps you

please mark brainliest

@ItzSnowySecret07

Answered by anindyaadhikari13
2

Required Answer:-

Question:

  • Write a program in Python to find out the product of x and y where x = 150 and y = 200

Solution:

Here is the program.

# declaring and initialising x and y

x,y=150,200

# finding out product.

p=x*y

# display the result

print("Product is: ",p)

Explanation:

  • Declare two variables x and y and initialise them with values 150 and 200. Find their product and store them in p variable. Display the result now.

Output is attached.

Attachments:
Similar questions