Calculate the sum of two given integers.

Input

Two integers $$m, n \in \mathbb{N}$$, each on a separate line.

Output

The sum of the integers $$m$$ and $$n$$.

Example

Input:

1
2

Output:

3