Python untuk loop m ke n

for i in range (m,n+1):
    s += i
    print(i)

print(s)
Nervous Nightingale