#C14683. Simple Addition

    ID: 44359 Type: Default 1000ms 256MiB

Simple Addition

Simple Addition

You are given two integers (a) and (b). Your task is to compute their sum, i.e., calculate (a+b) and output the result.

The problem requires you to read input from standard input (stdin) and write the result to standard output (stdout). This is a basic problem designed to test your ability to handle I/O operations and perform simple arithmetic operations.

inputFormat

The input consists of two integers separated by space or newlines. You need to read these two numbers from stdin.

outputFormat

Output a single integer which is the sum of the two input numbers.## sample

2 3
5