7 lines
85 B
Python
7 lines
85 B
Python
|
|
initial=1
|
|
while initial<=5:
|
|
print (initial)
|
|
initial=initial+1
|
|
|
|
print("Done") |