#
# This program reads in a sentence, breaks it down into words, and lists each
# word and its length
#
# 1. Input
#
sentence=raw_input("Enter a complete sentence -> ")
#
# 2. Processing
#
Words = sentence.split(" ")
print Words
#
for P in Words:
    l=len(P)
    print "the word is :",P,"; its length is : ",l
