Sum of Two Numbers
Mediummathimplementation1s limit· 256 MB
Set by Anii
Sum of Two Numbers
Medium1s limit256 MB
Read two integers a and b and print their sum.
Input Format
A single line with two space-separated integers a and b.
Output Format
A single integer — the value of a + b.
Constraints
-10^9 <= a, b <= 10^9
Sample
Input
2 3
Output
5
Explanation
2 + 3 = 5.
Loading editor…
Run uses this input. Submit always judges the hidden tests.