""" Program purpose """ import sys def main(): """ Start program execution """ # TODO(you): This code replicates stdin to stdout. Change it # to solve the problem and apply good programming practices for line in sys.stdin.read().splitlines(): print(line) if __name__ == '__main__': main()