HackerRank:Python-Arithmetic Operators Solution

a=int(input())
b=int(input())
tot=a+b
sub=a-b
mul=a*b
print(tot)
print(sub)
print(mul)

Comments