Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
86759 张曦 A+B 输入输出练习II C++ Accepted 3 MS 268 KB 202 2024-07-27 18:06:06

Tests(1/1):


Code:

#include <iostream> using namespace std; int main(){ int a,b,c; cin >>a; for(int s=1;s<=a;s++) { cin >>b>>c; cout<<b + c<<endl; } return 0; }