def suma_dzielnikow_1(n):
	suma = 0
	for j in range(1, n + 1):
		if n % j == 0:
			suma += j
	return suma
	
print(suma_dzielnikow_1(10))