#include<math.h>
int main() {
    int x, i;
    scanf("%d %d", &x, &i);
    printf("%d", x % (int)pow(10, i));
    return 0;
}