#include <iostream>
#include <string>
using namespace std;
int main() {
string n;
int k;
cin >> n >> k;
string res = "0";
for (char c: n) {
while (k && c < res.back()) {
res.pop_back();
--k;
}
res += c;
}
while (k--) {
res.pop_back();
}
int i = 0;
while (i < res.size() - 1 && res[i] == '0') {
++i;
}
cout << res.substr(i) << endl;
return 0;
}