#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int64_t N; cin >> N; int64_t res = 0; for (int64_t p = 1; p * p < N + 1; p++) { if (N % p == 0) res += p + (N / p); if (p * p == N) res -= p; } cout << res << '\n'; return 0; }