Python IO

표준 입력에서 데이터 읽기

import sys 
 
for line in sys.stdin:
    print(line)
 
# line 은 새줄 기호를 포함하고 있다.