s, f = map(int,input().split()) if s < f: print(1) else: print(s // f + 1)