import json

num = 5
res = {}
for i in range(num):
	res[i] = 'hui'
jsnon = json.dumps(res, indent= 4, separators=(',', ': '))
print(jsnon)
	
	