n,h,m=map(int,input().split())
if m%h==0:
    remain=n-m//h
else:
    remain=n-(m//h+1)
print(remain)