#include using namespace std; int main() { int n; cin >> n; int64_t x = pow(10, n); vector v; for (int64_t i = 1; i * i <= x; i++) { if (x % i == 0) { v.emplace_back(i); if (i * i != x) { v.emplace_back(x / i); } } } sort(v.begin(), v.end()); for (auto &i : v) { cout << i << endl; } return 0; }