Sum of Two Integers


Submit solution

Points: 5
Time limit: 1.0s
Memory limit: 256M

Author:
Problem type

Given two integers \(a\) and \(b\), compute their sum.

Input

One line containing two integers \(a\) and \(b\) (\(|a|, |b| \le 10^9\)).

Output

Print \(a + b\).

Example

Input
2 3
Output
5

Comments

There are no comments at the moment.