Computer Science, asked by DevanshuYadav123, 6 months ago

Please sove this ........ Q. 21 ONLY​

Attachments:

Answers

Answered by anindyaadhikari13
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 yesiamin6
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:
Similar questions