#include<bits/stdc++.h> using namespace std; int a,b; int main(){ cin>>a; for(int i=2;i<a;i++){ if(a%i==0) b+=i; } cout<<b; return 0; }