1"""When called as a script, consumes the input"""
2
3import sys
4
5if __name__ == "__main__":
6    for line in sys.stdin:
7        pass
8