import java.io.*; import java.util.*; public class Main_yukicoder677 { private static Scanner sc; private static Printer pr; private static void solve() { int n = sc.nextInt(); NavigableSet ts = new TreeSet<>(); ts.add(1L); for (int i = 0; i < n; i++) { NavigableSet tmp = new TreeSet<>(ts); for (long e : ts) { tmp.add(e * 2); tmp.add(e * 5); tmp.add(e * 10); } ts = tmp; } for (long e : ts) { pr.println(e); } } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes())); pr = new Printer(System.out); solve(); // pr.close(); pr.flush(); // sc.close(); } static String INPUT = null; private static class Printer extends PrintWriter { Printer(OutputStream out) { super(out); } } }