HackerRank Arithmetic Operators Problem Solutions

Author: Al-mamun Sarkar Date: 2020-03-23 14:56:24

HackerRank Arithmetic Operators Problem Solutions

Code:

if __name__ == '__main__':
    a = int(input())
    b = int(input())
    print(a + b)
    print(a - b)
    print(a * b)

Example Input:

3
2

Output:

5
1
6