Arithmetic Operators

  • + 0 comments

    Python Solution:

    if name == 'main': a = int(input()) b = int(input()) print(a+b,a-b,a*b, sep = "\n")