405774: GYM102063 A Adding Two Integers
Memory Limit:64 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
A. Adding Two Integerstime limit per test1 secondmemory limit per test64 megabytesinputstandard inputoutputstandard outputa + b Input
Given two integers (a and b), get their sum:
There will be one line with two integers given, a and b, separated by spaces.
OutputYou should return the integer sum of a and b, sum.
ExamplesInput5 9Output
14Input
50 -26Output
24Note
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