fx/pkg/reducer/reduce.py
2022-04-18 22:00:17 +02:00

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)))