A + B
Given two integers A and B. Calculate A + B.
Input
The input contains two integers A and B (-10
9
≤ A,B ≤ 10
9
).
Output
Print A + B to the output.
Sample Input
20 12
Sample Output
32