Count String Characters Please write a program which counts and returns the numbers of each character in a string input by console. count_characters( "abcdegabc" ) # { 'a':2, 'c':2, 'b':2, 'e':1, 'd':1, 'g':1 }