fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. string s, t;
  6. cin >> s;
  7. cin >> t;
  8.  
  9. int bandera = 0;
  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++;
  20. }
  21. }
  22.  
  23. cout << bandera;
  24.  
  25. return 0;
  26.  
  27. }
Success #stdin #stdout 0.01s 5300KB
stdin
Standard input is empty
stdout
Standard output is empty