import sys # 首字母大写:capitalized() # 每个单词首字母大写:title() name = input() print(name.lower()) print(name.upper()) print(name.title())