swap

lvhongyu 2023-06-27 8:57:35 4 返回题目

#include<bits/stdc++.h>

using namespace std;

int main()

{

int x,y;

cin>>x>>y;

if(y>x) swap(x,y);

cout<<x<<endl<<y;

return 0;

}

{{ vote && vote.total.up }}