#abc373a. A - September
A - September
Score : points
问题陈述
有 个字符串 ,由小写英文字母组成。
找出有多少个整数 满足 的长度为 。
以上为大语言模型 kimi 翻译,仅供参考。
Problem Statement
There are strings consisting of lowercase English letters.
Find how many integers satisfy that the length of is .
Constraints
- Each is a string of length between and , inclusive, consisting of lowercase English letters.
Input
The input is given from Standard Input in the following format:
Output
Print the number of integers such that the length of is .
Sample Input 1
january
february
march
april
may
june
july
august
september
october
november
december
Sample Output 1
1
There is only one integer such that the length of is : . 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 such that the length of is : and . Thus, print 2
.