Posts Arithmetic Operators (Python 3)
Post
Cancel

Arithmetic Operators (Python 3)

  • URL : https://www.hackerrank.com/challenges/python-arithmetic-operators/problem

  • Task
    • The provided code stub reads two integers from STDIN, and . Add code to print three lines where:
        1. The first line contains the sum of the two numbers.
        1. The second line contains the difference of the two numbers (first - second).
        1. The third line contains the product of the two numbers.
  • Example
    • a = 3
    • b = 5
  • Print the following:
    • 8
    • -2
    • 15
  • Input Format
    • The first line contains the first integer, a.
    • The second line contains the second integer, b.
  • Constraints
    • 1 <= a <= 10^10
    • 1 <= b <= 10^10
  • Output Format
    • Print the three lines as explained above.
1
2
3
4
5
6
if __name__ == '__main__':
    a = int(input())
    b = int(input())
    print(a + b)
    print(a - b)
    print(a * b)
1
2
3
4
5
6
7
 3
 5


8
-2
15
This post is licensed under CC BY 4.0 by the author.