words='this Is NoT EvEN'
print(words.title())
print(words.replace('is','was'))
print(words.upper())
print(words * 2)
