fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. short t;
  7. while(t--)
  8. {
  9. bool a=0,b=0,c=0;
  10. string s;
  11. cin >> s;
  12. if (s[0]=='y'||s[0]=='Y')
  13. {
  14. b=1;
  15. }
  16. if (s[1]=='e'||s[1]=='E')
  17. {
  18. a=1;
  19. }
  20. if (s[2]=='s'||s[1]=='S')
  21. {
  22. c=1;
  23. }
  24.  
  25. if (((a&&b)&&c)==1)
  26. {
  27. cout << "YES" << endl;
  28. }
  29. else
  30. {
  31. cout << "NO" << endl;
  32. }
  33. }
  34. }
Success #stdin #stdout 0.01s 5268KB
stdin
10
YES
yES
yes
Yes
YeS
Noo
orZ
yEz
Yas
XES
stdout
Standard output is empty