import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); ArrayList list = new ArrayList(); for(int i = 0; i <= n; i++) { for(int j = 0; j <= n; j++) { long t = (long)Math.pow(2, i) * (long)Math.pow(5, j); list.add(t); } } Collections.sort(list); for(int i = 0; i < list.size(); i++) { System.out.println(list.get(i)); } } }