6 条题解

  • -2
    @ 2022-7-6 19:49:00

    #include <math.h> #include <stdio.h> #include using namespace std; int main() { int a,b; while(cin >> a >> b) { if(a == 0 && b == 0) break; cout << a + b << endl; } }

    信息

    ID
    985
    时间
    1000ms
    内存
    32MiB
    难度
    4
    标签
    递交数
    374
    已通过
    183
    上传者