#include int main() { char s[51]; int a, b; scanf("%s %d %d",&s,&a,&b); for(int i=0;s[i++];)if(i!=a&&i!=b)printf("%c",s[i]); }