tj
2024-11-07 20:29:56
发布于:上海
1阅读
0回复
0点赞
#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<<a<<" "<<b;
else
cout<<b<<" "<<a;
}
这里空空如也
有帮助,赞一个