#include <iostream> int main() { int h,t; cin >> h >>t; for(int j = 0; j <= 100; j++){ if(t*j > h) { cout << j-1; break; } } return 0; }