题解
2024-04-14 09:48:49
发布于:广东
16阅读
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;
}
这里空空如也
有帮助,赞一个