10 lines
167 B
Python
10 lines
167 B
Python
|
counter = 0
|
||
|
while True:
|
||
|
lineIn = input()
|
||
|
if lineIn=='SKIP':
|
||
|
continue
|
||
|
if lineIn=='END':
|
||
|
break
|
||
|
counter = counter+1
|
||
|
print('line', counter, '=', lineIn)
|