+ 1
How to write a python programme that take 2 integers as input and do addition as ouput?
3 Answers
+ 7
DIY Learn the lesson properly ...
https://www.sololearn.com/Course/JUMP_LINK__&&__Python__&&__JUMP_LINK/?ref=app
If you want check out my code for reference :
https://code.sololearn.com/ctJY81hfl1ip/?ref=app
+ 3
n1 = int(input())
n2 = int(input())
print(n1 + n2)
+ 1
The python tutorial will help