#P5285. Sum of Two Numbers

    ID: 18518 Type: Default 1000ms 256MiB

Sum of Two Numbers

Sum of Two Numbers

This problem requires you to compute the sum of two integers provided as input.

Given two integers \(a\) and \(b\), your task is to calculate the result of the formula: $$a + b$$.

For example, if \(a = 3\) and \(b = 5\), then the output should be \(8\).

inputFormat

The input consists of a single line containing two integers separated by one or more spaces.

outputFormat

Output a single integer which is the sum of the two input integers.

sample

1 2
3