5 lines
No EOL
48 B
Python
5 lines
No EOL
48 B
Python
n = 6
|
|
s = 0
|
|
while n >= 0:
|
|
s = s + n
|
|
n = n -1 |