#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 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 (binary_search(a.begin(), a.end(), now)) { chmax(res, dfs(lower_bound(a.begin(), a.end(), now) - a.begin()) + 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 < N; i++) scanf("%lld", &a[i]); sort(a.begin(), a.end()); ll res = 0; for (ll i = 0; i < N; i++) { chmax(res, dfs(i)); } cout << res << endl; return 0; }