#include using namespace std; int main(){ int n;cin>>n; for(int i = 0; n > i; i++){ if(i+1 != n)cout << 3 << " "; else cout << 4 << endl; } }