n = gets.to_i ans = [] 0.upto(n) do |i| 0.upto(n) { |j| ans << 2**i * 5**j } end puts ans.uniq.sort