10 条题解

  • 1
    @ 2025-9-10 13:53:20
    #include <iostream>
    using namespace std;
    int a, b;
    int main()
    {
    	while(1)
    	{
    		cin >> a >> b;
                    if(!a && !b)
                        return 0;
    		cout << a + b << endl;
    	}
    	return 0;
    }
    

    信息

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