#include<bits/stdc++.h> using namespace std; int main(){ int i,n,m; cin>>n>>m; for(i=1;i<=n;i++) if(i%m==0) cout<<i<<" "; return 0; }