#P12416. Sum of Two Integers

    ID: 14519 Type: Default 1000ms 256MiB

Sum of Two Integers

Sum of Two Integers

This problem requires you to compute the sum of two given integers. The formula to compute the sum is given by: $$S = a + b$$. Make sure to handle negative numbers correctly.

inputFormat

The input consists of two space-separated integers provided in a single line.

outputFormat

Output a single integer representing the sum of the two input integers.

sample

3 5
8