#P5913. Sum of Two Integers

    ID: 19139 Type: Default 1000ms 256MiB

Sum of Two Integers

Sum of Two Integers

You are given two integers A and B. Write a program to compute the sum of A+B.

Note: The input will contain two integers separated by a space in a single line.

The answer should be computed using the formula:

\( S = A + B \)

inputFormat

The input consists of a single line containing two integers A and B separated by a space.

Constraints: \(0 \leq A, B \leq 10^9\).

outputFormat

Output a single integer which is the sum of A and B.

sample

1 2
3