2019-01-17 07:58:50 +01:00
|
|
|
#!/usr/bin/env python3.7
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2018-08-23 19:23:19 +02:00
|
|
|
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
start = time.time()
|
|
|
|
|
2019-01-17 07:58:50 +01:00
|
|
|
sys.stdin.reconfigure(errors='surrogateescape')
|
|
|
|
sys.stdout.reconfigure(errors='surrogateescape')
|
|
|
|
|
2018-08-23 19:23:19 +02:00
|
|
|
for line in sys.stdin:
|
|
|
|
seconds = time.time() - start
|
|
|
|
sys.stdout.write('%02d:%02d %s' % (seconds // 60, seconds % 60, line))
|
2018-08-31 09:07:54 +02:00
|
|
|
sys.stdout.flush()
|