6 lines
62 B
Python
6 lines
62 B
Python
|
x = 1
|
||
|
while x <= 10:
|
||
|
print(x)
|
||
|
x += 1
|
||
|
print("Blastoff!")
|