ConvertQCM/C1/vs/q3_6.py
2025-08-26 18:38:28 +02:00

5 lines
No EOL
48 B
Python

n = 6
s = 0
while n >= 0:
s = s + n
n = n -1