#!/usr/bin/env python3 import json, sys data = json.load(sys.stdin) json.dump(data, sys.stdout, indent = 2) print()