乐趣区

关于c++:PapaMelon-2-AB-注意整形溢出

题目链接

  • A+B

题解

  • 这道题次要是用于相熟 OJ 的输入输出
  • 输出的两个整数范畴都在 int32 范畴内,但相加后可不肯定了 :),留神溢出的问题
#include <iostream>
using namespace std;

int main() {
    int a, b;
    while (cin >> a >> b) {cout << 0LL + a + b << endl;}
    return 0;
}
退出移动版