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
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
Computer Science,
2 months ago
English,
5 months ago
English,
5 months ago
English,
11 months ago
Geography,
11 months ago