# program to print length of the string 'programmer'
a="programmer"
print(len(a))
#otherway to print length of the string 'programmer'
#print(len("programmer"))

# program to print length of the string 'programmer'
a="programmer"
print(len(a))
#otherway to print length of the string 'programmer'
#print(len("programmer"))
