A+B Problem
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
Background
This is a classic introductory problem designed to help users get familiar with the Online Judge (OJ) registration and submission process. It is also commonly used by administrators for OJ server stress testing.
Welcome to the world of programming! Successfully solving this problem means you’ve mastered the most basic programming task: the “” problem. Of course, this problem isn’t actually about calculating — instead, you’ll need to compute the sum of .
Description
You are given two integers, and . Write a program to automatically calculate and output their sum.
I/O Format
Input Format
The input consists of a single line containing two integers and , separated by a space.
All inputs are guaranteed to be within the range.
Output Format
Output a single line containing one integer — the sum of and .
I/O Example
2 3
5
Hint
Be aware that adding two values may result in a sum that exceeds the range.