N = int(input()) ans = 0 for i in range(1, int(N**0.5)+1): if N % i == 0: ans += i if i != N//i: ans += N//i print(ans)