#include using namespace std; #ifdef DEBUG #include "../include/debug.hpp" #else #define debug(...) 42 #define rdfile(...) 42 #endif int main(){ ios::sync_with_stdio(false); cin.tie(0); // rdfile("_input.txt"); long long l, r, n; cin >> l >> r >> n; for (long long i=0; i= i ? 1 : 0); c2 = (l-1)/n + ((l-1)%n >= i ? 1 : 0); cout << c1 - c2 << endl; } return 0; }