from re import findall
str = input()
print(str.strip())

好吧,正则不行

print(findall(r'[a-zA-Z]+',str)[0])