fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. string s, t;
  6. cin >> s;
  7. cin >> t;
  8.  
  9. bool bandera = false;
  10.  
  11. for(int i = 0; i < s.size(); i++){
  12. int cnt = 0;
  13. for(int j = 0; j < t.size(); j++){
  14. if(s[i+j] == t[j]){
  15. cnt++;
  16. }
  17. }
  18. if(cnt == t.size()){
  19. bandera = true;
  20. }
  21. }
  22.  
  23. if(bandera == true){
  24. cout << "SI";
  25. }else{
  26. cout << "NO";
  27. }
  28.  
  29. return 0;
  30.  
  31. }
Success #stdin #stdout 0.01s 5300KB
stdin
Standard input is empty
stdout
NO