A + B

Given two integers A and B. Calculate A + B.

Input
The input contains two integers A and B (-109 ≤ A,B ≤ 109).

Output
Print A + B to the output.

Sample Input
20 12

Sample Output
32