#include <bits/stdc++.h> using namespace std; int main (){ int N; cin >> N; for(int i=0;i<N-1;i++){ cout << 3 << " "; } cout << 1 << endl; }