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