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