Problem Statement
Jackson is doing his maths homework in addition and he needs your help!
Jackson's maths homework contains a lot of addition questions. Given two integers and , can you help Jackson calculate the sum of ?
Input
Your first and only line will contain two space-separated integers and .
Output
A single line, containing the value of
Constraints
For all test cases...
Example 1
Input
10 15
Output
25
Example 2
Input
100 100
Output
200
Example 3
Input
2004 0
Output
2004
Python Template
a, b = map(int, input().split())
# Continue your code here and print your final answer!
Solution
If you'd like to view a sample solution to this tutorial question, please click the "Read Editorial" link to the right of the problem!
Comments