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