#include #include using namespace std; int main(){ string S; int t,u; cin >> S >> t >> u; if(t != u){ S.erase(max(t,u),1); S.erase(min(t,u),1); }else{ S.erase(t,1); } cout << S << endl; return 0; }