#include using namespace std; struct brother{ char n; // メンバー名. int h; // 身長. int w; // 体重. bool operator<(const brother& another) const { return (h > another.h) || (h == another.h && w < another.w); } }; int main() { // 1. 入力情報取得. brother b[3]; for(int i = 0; i < 3; i++){ int h, w; char n = 'A' + i; cin >> h >> w; b[i].n = n, b[i].h = h, b[i].w = w; } // 2. 下記条件で, sort. // ① 身長がより高いほうが優れている // ② 長が同じであれば体重が軽いほうが優れている sort(b, b + 3); // 3. 終了. for(int i = 0; i < 3; i++) cout << b[i].n << endl; return 0; }