#include<iostream> using namespace std; int main(){ int x,i; scanf("%d",&x); for(i=1;i<=10000;i++){ if(i%x==2) printf("%d\n",i); } }