Files
linux-workspace/bin/tss
2020-08-13 11:06:41 +02:00

10 lines
179 B
Python
Executable File

#!/usr/bin/env python3
from sys import stdin, stdout
from time import time
start = time()
for line in stdin:
stamp = time() - start
stdout.write(f"{stamp:0.6f} {line}")