Sum of Two Integers
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
Given two integers \(a\) and \(b\), compute their sum.
One line containing two integers \(a\) and \(b\) (\(|a|, |b| \le 10^9\)).
Print \(a + b\).
2 3
5
Comments