Computer Science, asked by arnavrao1912, 5 months ago

Write a program to accept any two integers to A and B and print the result of the following:

A+B,A-B, A/B, and A*B.

Answers

Answered by atulkumargpt
0

Answer:

#python program

a = int(input(" 1st num : "))

b = int(input(" 2nd num : "))

print("a+b = ", a+b)

print("a-b = ", a-b)

print("a*b = ", a*b)

print("a/b = ", a/b)

Similar questions