#include using namespace std; int main() { cin.tie( 0 ); ios::sync_with_stdio( false ); string S; cin >> S; int i, j; cin >> i >> j; auto temp = minmax(i, j); S.erase( temp.second, 1); if ( i != j ) { S.erase( temp.first, 1); } cout << S << endl; return 0; }