-->

Arithmetic Operators in Python - Hacker Rank Solution | Hindi







Hello Friends

рдЖрдЬ рд╣рдо рдЖрдкрдХो Hacker Rank рдкрд░ Arithmetic Operators in Python рдХा рдХंрдк्рд▓ीрдЯ рд╕ॉрд▓्рдпूрд╢рди рдмрддाрдПंрдЧे рд╡рд╣ рднी рдЖрд╕ाрди рднाрд╖ा рдоें। рддो рджोрд╕्рддों рдЪрд▓िрдП рдЬाрдирддे рд╣ैं рд╕ॉрд▓्рдпूрд╢рди



 Problem:- Arithmetic Operators in Python - Hacker Rank Solution


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.
  2. The second line contains the difference of the two numbers (first - second).
  3. The third line contains the product of the two numbers.



Example :-

a=3

b=5



Input Format :-

The first line contains the first integer, a.

The second line contains the second integer, b.



Constraints :-

1 < a < 10^10

< b < 10^10



Output Format:-

Print the three lines as explained above.



Sample Input 0

3
2


Sample Output 0

5
1
6



Explanation 0


3 + 2 = 5

3 - 2  = 1

3 * 2  = 6



Solution:-


if __name__ == '__main__':
    a = int(input())
    b = int(input())

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



Video Tutorial:








DISCLAIMER:-
The above hole problem statement is given by hackerrank.com but the solution is generated by the  Apna Hindi Tech authority if any of the query regarding this post or website fill the following contact form.

Thank youЁЯШК




рдпрд╣ рднी рдкрдв़ें

Post a Comment