var = input() print('The length of the string is '+ str(len(var))+' and the letters are') for i in var: if i != ' ': print(i)