#include #include using namespace std; #define ll long long #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define repeat(i,s,n) for(int (i)=s; (i)<(n); (i)++) #define revrep(i,n) for(int (i)=(n)-1;i>=0; i--) int main() { cin.tie(0); ios::sync_with_stdio(false); cout<::max_digits10); int n; cin>>n; if(n%3==0) { cout << "3 3"; rep(i,n-2){ cout << " 1"; } cout << endl; } if(n%3==1) { cout << "3 3 3"; rep(i,n-3) { cout << " 1"; } cout << endl; } if(n%3==2) { cout << "3"; rep(i,n-1) { cout << " 1"; } cout << endl; } return 0; }