Hong-Phuc Bui
2025-06-30 478693d804680fa6c206ce47159c0740a6f32d51
1
2
3
4
5
6
7
x = 0
 
while x > -1:
    x = x + 1
    print(x)
 
print(x)