s = input("请输入一个字符串:")
upper_count = 0
lower_count = 0
digit_count = 0
space_count = 0
other_count = 0
for char in s:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
elif char.isspace():
space_count += 1
else:
other_count += 1
print("大写字母数量:", upper_count)
print("小写字母数量:", lower_count)
print("数字数量:", digit_count)
print("空格数量:", space_count)
print("其它字符数量:", other_count)