# Write sentence as string
sentence = "Je vois La Vie en rose..."
# Print sentence
print("phrase originale:", sentence)

# Split sentence into words
words = sentence.lower().split()
print(words)
