Python pour Loop M à n
for i in range (m,n+1):
s += i
print(i)
print(s)
Nervous Nightingale
for i in range (m,n+1):
s += i
print(i)
print(s)