Hide
Problem A
Two-sum
Per-Magnus is trying to add two integers, but he never learned how to.
Write a program to help him with this most difficult task!
Input
The input consists of a single line with two integers
Output
Output a single integer, the sum
Sample Input 1 | Sample Output 1 |
---|---|
1 1 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
2 2 |
4 |