fork download
  1. #include <iostream>
  2. using namespace std;
  3. #include <bits/stdc++.h>
  4. #include<string>
  5.  
  6. int main() {
  7. // your code goes here
  8.  
  9. string a,b;
  10. cin>>a;
  11. cin>>b;
  12. int n=a.size();
  13. int m=b.size();
  14. int count=0;
  15. int i=0,j=0;
  16. while(i<n && j<m)
  17. {
  18. if(a[i]==b[j])
  19. {
  20. count++;
  21. i++;
  22. j++;
  23. }
  24. else
  25. {
  26. i++;
  27. }
  28. }
  29.  
  30. if(count==m)
  31. {
  32. cout<<"yes";
  33. }
  34. else
  35. {
  36. cout<<"no";
  37. }
  38. //cout<<count;
  39. return 0;
  40. }
Success #stdin #stdout 0.01s 5288KB
stdin
"utyuyty"
"yyt"
stdout
yes