5 lines
60 B
Python
5 lines
60 B
Python
print("This is a test")
|
|
x=0
|
|
while x != 5:
|
|
x += 1
|
|
print(x)
|