def main():
sentence = input('Please enter a sentence: ')
length = int(sentence)
print('The length of the sentence is', length)
main()



(Please fix without using the function len()



Answer :