#!/usr/bin/env python
# coding=utf-8
# Created Time: 2017-08-08 13:39:27
# Modified Time: 2017-08-08 13:40:26
while True:
s = raw_input('Enter something : ')
if s == 'quit':
break
print 'Length of the string is', len(s)
print 'Done'
# coding=utf-8
# Created Time: 2017-08-08 13:39:27
# Modified Time: 2017-08-08 13:40:26
while True:
s = raw_input('Enter something : ')
if s == 'quit':
break
print 'Length of the string is', len(s)
print 'Done'