#include //#include"atcoder/all" #pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #define all(a) (a).begin(),(a).end() using namespace std; //using namespace atcoder; typedef long long ll; int pow(int a,int b){ int ans = 1; while(b){ if(b&1) ans *= a; a *= a; b >>= 1; } return ans; } int main(){ ll N,i,j;cin >> N; vector ans; for(i=0;i<=N;i++){ for(j=0;j<=N;j++) ans.emplace_back(pow(2,i)*pow(5,j)); } sort(all(ans)); for(i=0;i