Arithmetic Operators

  • + 0 comments

    if name == 'main': a = int(input()) b = int(input())

    print(a + b) print(a - b) print(a * b)