c

吴易泽  •  3个月前


include

using namespace std;

int main () {

int a, b, c = 0;
scanf("%d", a);
for (b = 1; b <= a; b++) {
	if (a % b == 0) {

		c = b + c;
	}
}

printf("%d", c);

return 0;

}


评论:

请先登录,才能进行评论