Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
145836 冰块ee 07交换数据II C++ Accepted 0 MS 280 KB 176 2026-01-25 19:13:40

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int n,x,y,s; int main(){ cin>>x>>y; if(x>y){ cout<<y<<' '<<x; }else{ cout<<x<<' '<<y; } }