Staging
v0.8.1
Revision f03c5148cfc6873df855bd0edca2940f9a5d8fd5 authored by Ned Deily on 14 March 2018, 01:21:36 UTC, committed by Ned Deily on 14 March 2018, 01:21:36 UTC
1 parent 9455244
Raw File
input_reader.py
"""When called as a script, consumes the input"""

import sys

if __name__ == "__main__":
    for line in sys.stdin:
        pass
back to top