#!/usr/bin/env python innums = [int(i) for i in input().split()] ans = int(innums[0] / innums[1]) + 1 print(str(ans))