文件目录

#include <bits/stdc++.h>
using namespace std;
int main()
{
    string n;
    int s;
    cin >> n >> s;
    while (s--)
    {
        int k = 0;
        while (k < n.size() - 1)
            if (n[k] > n[k + 1])
                break;
            else
                k++;
        n = n.substr(0, k) + n.substr(k + 1);
    }
    int k = 0;
    while (k < n.size() - 1 && n[k] == '0')
        k++;
    cout << n.substr(k);
    return 0;
}