4 条题解

  • 0
    @ 2022-7-6 20:09:31

    #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
    988
    时间
    1000ms
    内存
    32MiB
    难度
    2
    标签
    递交数
    254
    已通过
    150
    上传者