Given two integers (a and b), get their sum:
There will be one line with two integers given, a and b, separated by spaces.
You should return the integer sum of a and b, sum.
#cf_span(class=[tex-font-style-underline], body=[Constraints]):
- 1, 000, 000, 000 ≤ a ≤ 1, 000, 000, 000
- 1, 000, 000, 000 ≤ b ≤ 1, 000, 000, 000
- 2, 000, 000, 000 ≤ sum ≤ 2, 000, 000, 000
## Input
There will be one line with two integers given, a and b, separated by spaces.
## Output
You should return the integer sum of a and b, sum.
[samples]
## Note
#cf_span(class=[tex-font-style-underline], body=[Constraints]): - 1, 000, 000, 000 ≤ a ≤ 1, 000, 000, 000 - 1, 000, 000, 000 ≤ b ≤ 1, 000, 000, 000 - 2, 000, 000, 000 ≤ sum ≤ 2, 000, 000, 000
**Definitions**
Let $ a, b \in \mathbb{Z} $ be two integers.
**Constraints**
1. $ -1{,}000{,}000{,}000 \leq a \leq 1{,}000{,}000{,}000 $
2. $ -1{,}000{,}000{,}000 \leq b \leq 1{,}000{,}000{,}000 $
3. $ -2{,}000{,}000{,}000 \leq a + b \leq 2{,}000{,}000{,}000 $
**Objective**
Compute $ s = a + b $.