#include <iostream>

void func388()
{
    int now = 0;
    int o = 0;

    std::cin >> now;
    std::cin >> o;

    std::cout << now / o + 1 << std::endl;
}

int main() {
    func388();
    return 0;
}