#include #include #include using namespace std; typedef pair P; int main(){ vector

a; for(int i = 0; 3 > i; i++){ int t;cin>>t; a.push_back({t,i}); } sort(a.begin(),a.end(),greater

()); for(int i = 0; 3 > i; i++){ cout << (char)(a[i].second+'A') << endl; } }