diff -ur v1/hu.py v2/hu.py --- v1/hu.py 2020-08-27 15:11:45.615326057 +0900 +++ v2/hu.py 2020-08-28 20:49:36.670768713 +0900 @@ -38,7 +38,10 @@ return e.s if __name__ == "__main__": - s = sys.stdin.read() - d = cnv( s ) - sys.stdout.write( d ) + while True: + s = sys.stdin.readline() + if not s: + break + d = cnv( s ) + sys.stdout.write( d ) # EOF