#include #include #include #include #include #include #include #include using namespace std; long long int inf = 10000000000; bool cm(pair< pair, char> l, pair< pair, char> r){ if( l.first.first != r.first.first ) return l.first.first > r.first.first; return l.first.second < r.first.second; } int main(){ vector< pair< pair, char> > p(3); for(int i=0; i<3; i++){ cin >> p[i].first.first >> p[i].first.second; } p[0].second = 'A'; p[1].second = 'B'; p[2].second = 'C'; sort(p.begin(), p.end(), cm); for(int i=0; i<3; i++) cout << p[i].second << endl; return 0; } // EOF