fork(1) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n, k;
  6. cin >> n >> k;
  7.  
  8. for (int i = 0; i < k; ++i) { // Corrected loop condition
  9. if (n % 10 == 0) {
  10. n /= 10;
  11. }
  12. else {
  13. n -= 1;
  14. }
  15. }
  16. cout << n << endl;
  17. return 0;
  18. }
  19.  
Success #stdin #stdout 0.01s 5288KB
stdin
512
4
stdout
50