#include <iostream>

int main()
{
    int s,f;
    std::cin >> s >> f;
    std::cout << s/f + 1 << std::endl;
}