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