#include #include using namespace std; struct Fast {Fast(){std::cin.tie(0);ios::sync_with_stdio(false);}} fast; /* cpp template {{{ */ /* short */ #define pb push_back #define eb emplace_back #define mp make_pair #define Fi first #define Se second #define ALL(v) begin(v), end(v) #define RALL(v) (v).rbegin(), (v).rend() #define X real() #define Y imag() /* REPmacro */ #define REPS(i, a, n) for (ll i = (a); i < (ll)(n); ++i) #define rep(i, n) REPS(i, 0, n) #define REP1(i,n) for (ll i = 1; i <= (ll)(n); ++i) #define RREP(i, n) REPS(i, 1, n + 1) #define DEPS(i, a, n) for (ll i = (a); i >= (ll)(n); --i) #define DEP(i, n) DEPS(i, n, 0) #define EACH(i, n) for (auto&& i : n) /* debug */ #define debug(x) cerr << x << " " << "(L:" << __LINE__ << ")" << '\n'; /* alias */ using ll = long long; using ull = unsigned long long; using vi = vector; using vvi = vector; using vvvi = vector; using pii = pair; using D = double; using P = complex; using vs = vector; template using PQ = priority_queue; template using minPQ = priority_queue, greater>; /* const */ const int INF = 1001001001; const ll LINF = 1001001001001001001ll; const int MOD = 1e9 + 7; const D EPS = 1e-9; const int dx[] = {0, 1, 0, -1, 1, -1, 1, -1}, dy[] = {1, 0, -1, 0, 1, -1, -1, 1}; /* func */ inline bool inside(int y, int x, int H, int W) {return y >= 0 && x >= 0 && y < H && x < W;} inline int in() {int x; cin >> x; return x;} inline ll IN() {ll x; cin >> x; return x;} inline vs split(const string& t, char c) {vs v; stringstream s(t); string b; while(getline(s, b, c)) v.eb(b); return v;} template inline bool chmin(T& a, const T& b) {if (a > b) a = b; return a > b;} template inline bool chmax(T& a, const T& b) {if (a < b) a = b; return a < b;} template inline void print(const pair& p) {cout << p.first << " " << p.second << endl;} template inline void print(const T& x) {cout << x << '\n';} template inline void print(const vector>& v) {for (auto&& p : v) print(p);} template inline void print(const vector& v, string s = " ") {rep(i, v.size()) cout << v[i] << (i != (ll)v.size() - 1 ? s : "\n");} signed main() { int n=in(); vector ans; rep(i,n+1) { rep(j,n+1) { ans.pb(pow(2,i)*pow(5,j)); } } sort(ALL(ans)); EACH(e,ans) print(e); return 0; }