#include <iostream> #include <math.h> using namespace std; int main() { float h, t; cin >> h >> t; int temp = 0; while (h >= t) { h -= t; temp++; } cout << temp; return 0; }