#include int main() { int n, m; scanf("%d %d", &n, &m); printf("%d", n % m == 0 ? n / m : n / m + 1); return 0; }