try:
import ujson as json
except ImportError:
import json
print("SKIP")
raise SystemExit
print(json.dumps(1.2))
print(json.dumps({1.5: 'hi'}))