import math n = int(input()) ans = 0 for x in range(1, int(math.sqrt(n)) + 1): if n % x == 0: if x != n // x: ans += n // x ans += x print(ans)