4 lines
90 B
Python
4 lines
90 B
Python
|
|
import fileinput
|
||
|
|
for line in fileinput.input():
|
||
|
|
pass # process line, includes newline
|