a = input() print(a.lower(),a.upper(),a.title(),sep='\n')
注意capitalize()是指字符串的第一个首字母大写,title()是对字符串内所有单词的首字母大写。