PythonOnlineDebugger/precompiled/__utils__.py

14 lines
249 B
Python

import sys
class __Utils__:
def read_tokens(self):
for line in sys.stdin:
for token in line.split():
yield token
def read_lines(self):
for line in sys.stdin:
yield line.strip('\n')