# yukicoder No.810 割った余りの個数 2020/01/21 l,r,m=map(int,input().split()) x=l%m y=r%m ans=0 if r-l>=m: ans+=m else: ans+=(r+1)-l print(ans)