#include <iostream>

int main()
{
  float h,dx;
  std::cin >> h >> dx;
  int n;
  n=(h/dx)+1;
  std::cout << n ;
}