string="Coffee"
better_string=string[:2]+"d"+string[-1]
print(f"Coffee to 'Code' is {better_string}")
