Hong-Phuc Bui
2025-06-24 9309589ff6fe3f61abd61263f61eb890141f6491
1
2
3
4
5
6
7
x = 0
 
while x > -1:
    x = x + 1
    print(x)
 
print(x)