fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int A, B, C;
  7. cin >> A >> B >> C;
  8.  
  9. if (A > B && A > C) {
  10. cout << "To" << endl;
  11. } else if (B > A && B > C) {
  12. cout << "Ti" << endl;
  13. } else if (C > A && C > B) {
  14. cout << "Te" << endl;
  15. }
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Te