mirror of
https://github.com/neogeek23/drawshare.git
synced 2026-02-05 11:38:22 +00:00
7 lines
119 B
Python
7 lines
119 B
Python
|
|
import os, sys
|
||
|
|
while 1:
|
||
|
|
line = sys.stdin.readline().strip()
|
||
|
|
if not line:
|
||
|
|
break
|
||
|
|
os.close(int(line))
|