WAP to assign two number a=25 and b=7 calculate and display result of the followings a+b, a-b,
a*b and a/b.
Answers
Answered by
0
Answer:
Python Program:-
a=25
b=7
print(a+b,"is the sum")
print(a-b,"is the difference")
print(a*b,"is the multiplication")
print(a/b,"is the division")
Similar questions