#include using namespace std; using ll=long long; #define rep2(i, a, n) for(int i = (a); i < (n); i++) #define rep(i, n) rep2(i,0,n) int main(){ cin.tie(nullptr);ios_base::sync_with_stdio(false); int n;cin>>n; ll shake=10; if(n>0){ rep(i,n-1)shake*=10; }else{ shake=1; } vector hoge; for(ll i=1;i*i<=shake;i++){ if(shake%i==0){ hoge.push_back(i); if(i!=shake/i) hoge.push_back(shake/i); } } rep(i,hoge.size()){ cout<