n=int(input())

x=int(input())

y=int(input())

m=y//x

if  y%x==1:

   n=n-1

print(n-m)

这题考验的是对简单运算的考验

想必大家都能理解!!!