import json

person_json = '{"name": "John", "age": 30}'

# Convert JSON to dictionary
person_dict = json.loads(person_json)

print(person_dict)