fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6. int a,b,c,d;
  7. cin>>a>>b>>c>>d;
  8.  
  9. if(a+b<=d && c>d)
  10. cout<<"Shuttle";
  11. else if(a+b>d && c<=d)
  12. cout<<"Walk";
  13. else if(a+b<=d && c<=d)
  14. cout<<"~.~";
  15. else
  16. cout<<"T.T";
  17.  
  18.  
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5316KB
stdin
10 8 13 16
stdout
Walk