#include #include using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); string S; int N, M; cin >> S >> N >> M; if (N == M) { S.erase(S.begin() + N); } else if (N > M) { S.erase(S.begin() + N); S.erase(S.begin() + M); } else { S.erase(S.begin() + M); S.erase(S.begin() + N); } cout << S << endl; return 0; }