#abc373a. A - September

A - September

Score : 100100 points

问题陈述

1212 个字符串 S1,S2,,S12S_1, S_2, \ldots, S_{12},由小写英文字母组成。

找出有多少个整数 ii (1i12)(1 \leq i \leq 12) 满足 SiS_i 的长度为 ii

以上为大语言模型 kimi 翻译,仅供参考。

Problem Statement

There are 1212 strings S1,S2,,S12S_1, S_2, \ldots, S_{12} consisting of lowercase English letters.

Find how many integers ii (1i12)(1 \leq i \leq 12) satisfy that the length of SiS_i is ii.

Constraints

  • Each SiS_i is a string of length between 11 and 100100, inclusive, consisting of lowercase English letters. (1i12)(1 \leq i \leq 12)

Input

The input is given from Standard Input in the following format:

S1S_1

S2S_2

\vdots

S12S_{12}

Output

Print the number of integers ii (1i12)(1 \leq i \leq 12) such that the length of SiS_i is ii.

Sample Input 1

january
february
march
april
may
june
july
august
september
october
november
december

Sample Output 1

1

There is only one integer ii such that the length of SiS_i is ii: 99. Thus, print 1.

Sample Input 2

ve
inrtfa
npccxva
djiq
lmbkktngaovl
mlfiv
fmbvcmuxuwggfq
qgmtwxmb
jii
ts
bfxrvs
eqvy

Sample Output 2

2

There are two integers ii such that the length of SiS_i is ii: 44 and 88. Thus, print 2.