result = 0
# change code here...
i = 0
while i < 5:
i += 1
result += i
print(result)
# expected output: 15
Python
Setting up Python environment...
Output
result = 0
# change code here...
i = 0
while i < 5:
i += 1
result += i
print(result)
# expected output: 15
Setting up Python environment...