Hong-Phuc Bui
5 days ago 01eda97ff64ad2570b7105cc5b734f488ce0d47a
1
2
3
4
5
6
7
x = 0
 
while x > -1:
    x = x + 1
    print(x)
 
print(x)