全部评论 1

  • 有必要吗:
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    string a,b;
    cin>>a>>b;
    if(a==b) cout<<a;
    else if(a>b) cout<<b<<' '<<a;
    else cout<<a<<' '<<b;
    }

    2024-03-21 来自 广东

    0
首页