ans

lijunchen 2020-11-27 13:03:17 2022-03-30 20:56:41 10 返回题目

#include <bits/stdc++.h>
using namespace std;
int main() {
    int x,y,c;
    cin >>x>>y;
    if(x<y){
	c=y;
	y=x;
	x=c;
	cout<<x<<endl<<y;
	} 
    else cout<<x<<endl<<y;
    return 0;
}
{{ vote && vote.total.up }}