write the program to store 15 in x and 8 in y anf find the sum ,the diffetence and oroduct of x and y
Answers
Answered by
0
x = 15
y = 8
print(x+y)
print(x-y)
print(x*y)
Answered by
0
Answer:
your answer
Explanation:
X= 15
Y= 8
print(x+y)
print(x-y)
print(x*y)
Similar questions