Python - 完全數


n = int(input('please fill in an integer number :'))
c = 0

for i in range(1,n+1):
    if n % i == 0:
        c = c + i    
    print(c-n)

English writing practice 2025-5/11

After graduating from university and working for several years, I developed the mindset that a job should be related to one’s interests. Peo...