1import os
2
3if __name__ == '__main__':
4    buf = os.read(0, 1024)
5    os.write(1, b'OUT:'+buf)
6    os.write(2, b'ERR:'+buf)
7