#include using namespace std; int main(){ int L,R,M; cin >> L >> R >> M; set S; for(int i=L;i<=R;i++){ S.insert(i%M); } cout << S.size() << endl; }