5 条题解

  • 0
    @ 2022-7-6 20:05:32

    #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
    987
    时间
    1000ms
    内存
    32MiB
    难度
    3
    标签
    递交数
    291
    已通过
    158
    上传者