You are viewing a single comment's thread. Return to all comments →
if name == 'main': a = int(input()) b = int(input())
x = a + b, a - b, a * b for i in x: print(i)
Arithmetic Operators
You are viewing a single comment's thread. Return to all comments →
if name == 'main': a = int(input()) b = int(input())