#define _USE_MATH_DEFINES #include //cin, cout #include //vector #include //sort,min,max,count #include //string,getline, to_string #include //abs(int) #include //swap, pair #include //deque #include //INT_MAX #include //bitset #include //sqrt, ceil. M_PI, pow, sin #include //fixed #include //setprecision #include //stringstream #include //gcd, assumlate #include //randam_device #include //numeric_limits using namespace std; constexpr long long int D_MOD = 1000000007; int main() { int a, b, c; cin >> a >> b >> c; if (a < b) { if (b < c) { cout << "C\nB\nA" << endl; } else { if (a < c) { cout << "B\nC\nA" << endl; } else { cout << "B\nA\nC" << endl; } } } else { if (a < c) { cout << "C\nA\nB" << endl; } else { if (b < c) { cout << "A\nC\nB" << endl; } else { cout << "A\nB\nC" << endl; } } } return 0; }