#B2001. Sum of Two Integers

    ID: 11083 Type: Default 1000ms 256MiB

Sum of Two Integers

Sum of Two Integers

Given two integers, compute their sum. The formula is given by: \(a + b\), where \(a\) and \(b\) are integers.

inputFormat

The input consists of two space-separated integers \(a\) and \(b\).

outputFormat

Output a single integer which is the sum of \(a\) and \(b\).

sample

3 4
7