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 0a1000 and 0b1000.

Output

Output a single integer, the sum a+b.

Sample Input 1 Sample Output 1
1 1
2
Sample Input 2 Sample Output 2
2 2
4
Hide

Please log in to submit a solution to this problem

Log in