Sum of Two Integers
Given two integers \(a\) and \(b\), print their sum.
Input
One line containing two integers \(a\) and \(b\).
Constraints
\(-10^9 \le a, b \le 10^9\)
Output
Print \(a + b\).
Example
Input
2 3
Output
5
Given two integers \(a\) and \(b\), print their sum.
One line containing two integers \(a\) and \(b\).
\(-10^9 \le a, b \le 10^9\)
Print \(a + b\).
2 3
5
Comments
hello