#P2269. Sum of Two Integers
Sum of Two Integers
Sum of Two Integers
Given two integers, compute their sum.
Formula: $$S = a + b$$
inputFormat
The input consists of a single line containing two space-separated integers, a and b.
outputFormat
Output a single integer which is the sum of the two input integers.
sample
1 2
3