洛谷综合题单 -- A+B Problem 发表于 2023-08-11 更新于 2023-11-12 分类于 编程进阶 本文字数: 28 阅读时长 ≈ 1 分钟 试机题,直接贴一下题解: 12345678910#include "iostream"using namespace std;int main() { int a, b; cin >> a >> b; cout << a + b; return 0;}