10 lines
179 B
Python
Executable File
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}")
|