题解 P1001 A+B Problem 发表于 2019-05-29 | 更新于 2019-06-01 | 分类于 题解 | 阅读次数: 题面 12345678#include <bits/stdc++.h>using namespace std;int main() { int a, b; cin >> a >> b; cout << a + b << endl; return 0;}