#include #include #include #include #include #include #include #include #include #include using namespace std; typedef long long ll; typedef vector vi; typedef vector vvi; #define rep(i,n) for(ll i=0;i<(n);i++) #define pii pair #define piii pair #define mp make_pair #define pb push_back #define ALL(a) (a).begin(),(a).end() #define FST first #define SEC second const int INF = (INT_MAX/2); const ll LLINF = (LLONG_MAX/2); const double eps = 1e-5; const double PI = M_PI; #define DEB cerr<<"!"<0){if(n&1==1)r=r*x%m;x=x*x%m;n>>=1;}return r%m;} using namespace std; int main(){ cin.tie(0);ios_base::sync_with_stdio(0); typedef tuple tiic; vector vt(3); rep(i,3){ int h,w; cin >> h >> w; vt[i] = tiic{h,w,'A'+i}; } sort(ALL(vt),[](tiic a,tiic b){ int h,hh,w,ww; char c,cc; tie(h,w,c) = a; tie(hh,ww,cc) = b; if(h != hh) return h > hh; else return w < ww; }); rep(i,3){ cout << get<2>(vt[i]) << endl; } return 0; }