A+B Problem
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
Description
\(A+B\)是大家再熟悉不过的一道题,本oj也有这道题呢。
求两数之和。
Input
一行,两个整数 \(a,b\),用空格分隔。
Output
一个正整数,表示两数之和即 \(a+b\)。
Sample
Sample input
#1
1 2
#2
744 326
#\3
2580000 100000000
Sample output
#1
3
#2
1070
#3
102580000
Hint
对于 \(100\%\) 的数据,\(a+b\le 2^{31}-1\)