#include using namespace std; typedef unsigned long long ull; typedef long long ll; int main(){ tuple p[3]; for(int i=0; i<3; i++){ int h, w; cin >> h >> w; p[i]=make_tuple(-h, w, i); } sort(p, p+3); for(int i=0; i<3; i++) cout << (char)(get<2>(p[i])+'A') << endl; return 0; }