9 lines
129 B
Python
Executable File
9 lines
129 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
#for arg in sys.argv:
|
|
# print('<!--' + str(arg) + '-->')
|
|
|
|
sys.stdout.write(sys.stdin.read())
|