题解
2023-07-06 18:22:55
发布于:上海
45阅读
0回复
0点赞
#include<iostream>
#include<cstring>
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;
}
}
这里空空如也
有帮助,赞一个