'''遍历输入的字符串,然后分别统计各类型字符的个数,最后进行输出''' s = input() a, b, c, d = 0, 0, 0, 0 for i in s: if i.isalpha(): a += 1 elif i&nbs...