1 条题解

  • 0
    @ 2025-8-4 20:09:40
    #include <iostream> 
    #include <string> 
    using namespace std; 
     
    int main() { 
        string a, b; 
        cin >> a >> b; 
        if (a < b) { 
            cout << a << endl; 
        } else { 
            cout << b << endl; 
        } 
        return 0; 
    } 
    
    • 1

    信息

    ID
    217
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    (无)
    递交数
    20
    已通过
    11
    上传者