#include int main(void) { int x; int y; int z; scanf("%d",&x); scanf("%d",&y); z = x / y +1; printf("%d",z); return 0; }