2 条题解

  • 0
    @ 2025-10-20 11:06:33

    #include using namespace std;

    int main() {

    int a = 0;
    int b = 0;
    while (cin >> a >> b)
    {
        if (a ==0&&b==0)
        {
            break;
        }
            cout << a + b << endl;
           
            
        
       
    
       }
    return 0;
    

    }

    信息

    ID
    54
    时间
    2000ms
    内存
    128MiB
    难度
    2
    标签
    递交数
    1709
    已通过
    734
    上传者