Please sove this ........ Q. 21 ONLY
Attachments:
![](https://hi-static.z-dn.net/files/d13/8461efc9bb1693ca22da65981de9ddbc.jpg)
Answers
Answered by
2
Question:-
Write a program to input two numbers and find their addition, subtraction, multiplication and division.
Program:-
a=int(input("Enter first number: "))
b=int(input("Enter second number: "))
print("Addition: ",a+b)
print("Subtraction: ",a-b)
print("Multiplication: ",a*b)
print("Division: ",a/b)
Answered by
1
Answer:
a=int(input("ent a value\n"))
b=int(input("ent b value\n"))
print("addition=",a+b)
print("subraction=",a-b)
print("multiplication=",a*b)
print("division=",a/b)
Explanation:
OUTPUT IS ATTACHED LOOK AT THAT
HOPE IT HELPS YOU
DO FOLLOW FOR MORE PROGRAMS
MARK AS BRAINLIEST
Attachments:
![](https://hi-static.z-dn.net/files/db5/71cbcc95e9a235692a5c70e171fb0ae7.jpg)
Similar questions