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