Hong-Phuc Bui
2025-05-16 c5537a297ea7a764e0815fdc5c585076add7f30c
1
2
3
4
5
6
7
x = 0
 
while x > -1:
    x = x + 1
    print(x)
 
print(x)