1. A+B

Time Limit: 2 seconds

Memory Limit: 128 MB

Rating: 800

Problem Statement

Given two integers $A$ and $B$, output $A+B$.

Input

The input consists of a single line containing two integers $A$ and $B$ ($ -10^9 ≤ A,\ B ≤ 10^9$).

Output

Output a single integer - the sum of $A$ and $B$.

Sample Cases
Sample Input 1:
8 9

Sample Output 1:
17



Sample Input 2:
1438558 75866991

Sample Output 2:
77305549
Explanation

Not available for this problem.

Sources

admin@ian@

Submit | Back