#include #include int main(){ char str[50]; scanf("%s",str); int B,C; scanf("%d%d",&B,&C); for(int i = 0;i < (int)strlen(str);i++){ if(i == B || i == C){ str[i] = '\0'; } } printf("%s",str); }