mirror of
https://github.com/antonmedv/fx
synced 2024-11-01 21:40:20 +00:00
10 lines
131 B
Python
10 lines
131 B
Python
import json, sys, os
|
|
x = json.load(sys.stdin)
|
|
|
|
# Reducers %v
|
|
|
|
try:
|
|
print(json.dumps(x))
|
|
except:
|
|
print(json.dumps(list(x)))
|