Published:
Updated:

https://codeforces.com/problemset/problem/977/A


Solution

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;

public class Solution {
    public static int wrongSubtraction(int n, int k) {
        for (int i = 0; i < k; i++) { 
            if (n % 10 != 0) {
                n--;
            } else { // n % 10 == 0
                n /= 10;
            }
        }
        return n;
    }

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine(), " ");
        int n = Integer.parseInt(st.nextToken());
        int k = Integer.parseInt(st.nextToken());
        System.out.print(wrongSubtraction(n, k));
        br.close();
    }
}

Leave a comment