1001 - Extremely Basic || URI Online Judge
Problem name: 1001 - Extremely Basic
Judge: URI Online Judge
Problem link: 1001 - Extremely Bascic
Solution on GitHub: 1001 - Extremely Bascic
[At first you should try to solve the problem on your own. This will increase your thinking power and the ability to solve the program will increase. And if you copy directly from here, you will not learn anything. So my advice is to try to solve it yourself first. If not then check this code. Once you understand the code, do it yourself. Don't copy from here.
Best of luck]
URI Online Judge 1001 - Extremely Basic Solution in Python
A = int(input())
B = int(input())
result = A + B
print("X =", result)
