1string=raw_input("Enter string:")
2count1=0
3count2=0
4for i in string:
5 if(i.islower()):
6 count1=count1+1
7 elif(i.isupper()):
8 count2=count2+1
9print("The number of lowercase characters is:")
10print(count1)
11print("The number of uppercase characters is:")
12print(count2)