7 lines
No EOL
121 B
Python
Executable file
7 lines
No EOL
121 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
if sys.argv[1] == "flip":
|
|
stdin = sys.stdin.read()
|
|
print(stdin[::-1], flush=True) |