#include using namespace std; typedef long long ll; int main() { ll L,R,C; cin>>L>>R>>C; int cnt=0; for(int i=L;i<=R;i++) { if(i*C>1000) { cout<<1000-(i-1)*C<