Arithmetic Operators

  • + 19 comments

    Here is Python solution from my HackerrankPractice repository:

    a, b = int(input()), int(input())
    print((a + b), (a - b), (a * b), sep='\n')
    

    Feel free to ask if you have any questions :)