L,R,M =map(int,input().split()) N =R-L+1 ans =N%M if ans == 0 and N//M != 0: ans += M print(ans)