Problem Description

Given a JSON object, freeze it and also freeze all direct child objects/arrays (one level deep). Print DONE.

Input Format

One line JSON object.

Output Format

DONE

Sample Test Case

Input:
{"a":{"x":1},"b":[1,2],"c":3}
Output:
DONE

Constraints

Input JSON contains only objects/arrays/numbers/strings/booleans/null.

Solutions (0)

No solutions submitted yet. Be the first!

Discussion (0)

No comments yet. Start the discussion!

Prev Next