import re string = input('').strip() li = string.split(' ') if len(string) < 0 or len(string) > 1000: print('无效输入,请输入长度0-1000的字符串') elif re.search('\\d',string): print('输入中有数字,无效重新输入') else : print(len(li[-1]))