Arithmetic Operators

  • + 0 comments

    Read two integers from STDIN

    a = int(input()) b = int(input())

    Print the results

    print(a + b) # Sum print(a - b) # Difference print(a * b) # Product