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