# your code goes here
testStr = "gdsfgfdhjghfgsdf"

def sortBy(item):
	return item[1]

result = sorted([[str(c), testStr.count(c)] for c in set(testStr)], key=sortBy, reverse=True)

print(";".join('"{}"={}'.format(i[0], i[1]) for i in result))