#include <iostream> int main() { int N; std::cin>>N; for(int i=1;i<=10000;i++) if(i % N == 2) printf("%d\n",i); return 0; }