write a program to prints the sum of two integers.

 write a program to prints the sum of two integers.


    a=int(input())

    b=int(input())

    print(a+b)

Comments