#B2007. A + B Problem

    ID: 11089 Type: Default 1000ms 256MiB

A + B Problem

A + B Problem

This is a basic programming problem designed to help beginners get familiar with the online judge platform. You are given two integers \(A\) and \(B\); your task is to output the sum \(A+B\). It is guaranteed that \(A\), \(B\), and the result are all within the 32-bit integer range.

inputFormat

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

outputFormat

Output a single integer which is the result of A+B.

sample

1 2
3