#include #include "sort.h" using namespace std; int main() { int d, e; cin >> d >> e; sort_two(d, e); int a, b, c; cin >> a >> b >> c; sort_three(a, b, c); cout << "调整结束,输出结果:" << endl; cout << d << e <