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