#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; vector dp; ll N; vector a; ll id[1000500]; ll dfs(ll cur) { if (cur == N) return 0; if (dp[cur] != -1) return dp[cur]; ll res = 1; for (ll i = 2; i <= 1000000; i++) { ll now = a[cur] * i; if (a.back() < now) break; if (id[now] >= 0) { chmax(res, dfs(id[now]) + 1); } } return dp[cur] = res; } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ scanf("%lld", &N); a.resize(N); dp = vector(N, -1); for (ll i = 0; i < 1000050; i++) id[i] = -1; sort(a.begin(), a.end()); for (ll i = 0; i < N; i++) { scanf("%lld", &a[i]); id[a[i]] = i; } ll res = 0; for (ll i = 0; i < N; i++) { chmax(res, dfs(i)); } cout << res << endl; return 0; }