12 lines
144 B
Python
Executable file
12 lines
144 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
|
|
def main():
|
|
data = sys.stdin.read()
|
|
sys.stdout.write(data)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|