9 lines
126 B
Python
9 lines
126 B
Python
import os
|
|
import sys
|
|
|
|
while 1:
|
|
line = sys.stdin.readline().strip()
|
|
if not line:
|
|
break
|
|
os.close(int(line))
|