def Main():
    s,f=map(int,input().split())
    print((s+f)//f)

Main()