def input(self):
     from Parser import parseOneInt
     return parseOneInt(open(self.inputPath))
Exemple #2
0
 def output(self):
     from Parser import parseOneInt
     for o in parseOneInt(open(self.outputPath)):
         yield o[0]
 def output(self):
     from Parser import parseOneInt
     for o in parseOneInt(open(self.outputPath)):
         yield o[0]
Exemple #4
0
 def input(self):
     from Parser import parseOneInt
     return parseOneInt(open(self.inputPath))