#K56272. Sum of Two Numbers
Sum of Two Numbers
Sum of Two Numbers
Given two integers separated by a space, your task is to compute their sum. More formally, if the input contains two integers \(a\) and \(b\), you are required to output \(a+b\). The solution must read from standard input (stdin) and write the result to standard output (stdout).
Make sure your program considers any valid integer inputs that can appear in competitive programming contests.
inputFormat
The input consists of a single line containing two space-separated integers \(a\) and \(b\).
outputFormat
Output a single integer which is the sum of \(a\) and \(b\). The answer should be printed on one line.
## sample45 58
103