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