#include <stdio.h> int main(void) { int h,t; scanf("%d%d",&h,&t); for(int i = 1; i<=100; i++){ if(i*t > h){ printf("%d",i-1); return 0; } } }