#include<iostream> using namespace std; int main(){ int i=2,n; cin>>n; while(i<=n-2){ i+=2; cout<<i<<endl; } return 0; }