题解
2024-11-18 21:16:30
发布于:江苏
3阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
string a,b;
cin>>a>>b;
if(a==b){
cout<<a;
}else if(a>b){
cout<<b<<" "<<a;
}else if(a<b){
cout<<a<<" "<<b;
}
return 0;
}
这里空空如也
有帮助,赞一个