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