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