1 条题解

  • 0
    @ 2026-5-17 14:57:11
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n, a, b;
        cin >> n;
        while(n--){
            cin >> a >> b;
            cout << a + b << endl;
        }
        return 0;
    }
    • 1

    信息

    ID
    7777
    时间
    2000ms
    内存
    1024MiB
    难度
    8
    标签
    递交数
    11
    已通过
    9
    上传者