Files
python/TangDou/XiTi/1221.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

13 lines
235 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int x, y, z;
cin >> x >> y >> z;
if (abs(y - x) > abs(z - x)) cout << z << " " << y << endl;
else cout << y << " " << z << endl;
return 0;
}