Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
1436 邓小龙 07交换数据II C++ Accepted 0 MS 256 KB 233 2023-09-30 16:34:15

Tests(10/10):


Code:

# include<iostream> # include<cstdio> #include<iomanip> using namespace std; int main(){ int a,b,c=0; cin>>a>>b; if(a>b){ c=b; b=a; a=c; } cout<<a<<" "<<b; return 0; }