#include<iostream> using namespace std; int main(){ int n,i=1; cin>>n; while(i<=6){ if(n%2==1){ cout<<n<<endl; i++; n++; } n++; } }