1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include
#include
int main()
{
char st[100], sl[100],s[20][20]={'\0'};
int k=0, i,t=0,j;
cin>>st;
cout<<endl;
t=strlen(st);
i=-1;
do
{++i;
if(st[i]=='a' && st[i+1]=='b' && st[i+2]=='c' && st[i+3]=='d')
{
for( j=i+3;j<t-1;j++)
st[j]=st[j+1];
t--;
}
}while(st[i]!=<span>'\0');
for( j=0;j}