#include void main(void) { char strName[1000] = "a"; scanf("%s",strName); int t,u; scanf("%d %d",&t,&u); int i = 0 ; while(strName[i] != '\0'){ if(i == t || i == u){ i++; continue; }else{ printf("%c",strName[i]); i++; } } }