Q. Write a program in Python to find the product of two numbers x and y, where
x=15 and y=150.
Answers
Answered by
0
"""
Project Type: Brainly Answer
Date Created: 09-02-2021
Date Edited Last Time: ---NIL---
Question Link: https://brainly.in/question/34876901
Question: Write a program in Python to find the product of two numbers x and y, where
x=15 and y=150.
Program Created By: atrs7391
Programming Language: Python
Language version (When program created or last edited): Python 3.9.1
"""
x = 15
# initialising that x is equals to 15
y = 150
# initialising that y is equals to 150
print("The product of x and y =", x*y)
# By using print() function, print the product of x and y
Similar questions