6 lines
104 B
Python
Executable file
6 lines
104 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import textwrap
|
|
import sys
|
|
|
|
sys.stdout.write(textwrap.dedent(sys.stdin.read()))
|