fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int tr, tc;
  6. string cond;
  7. cin>>tr>>tc;
  8. cin>>cond;
  9. if((tr>=tc&&cond=="freeze")||(tr<=tc&&cond=="heat")||cond=="auto"){
  10. cout<<tc;
  11. }else cout<<tr;
  12. }
  13.  
Success #stdin #stdout 0s 4536KB
stdin
10 20 
heat
stdout
20