#ABC164C. gacha

gacha

题目描述

You drew lottery NN times. In the ii-th draw, you got an item of the kind represented by a string SiS_i.

How many kinds of items did you get?

你抽了 NN 次彩票。在第 ii 次抽奖中,你得到了一个字符串 SiS_i 所代表的物品。

你得到了多少种物品?

输入格式

输入内容按以下格式标准输入:

NN
S1S_1
::
SNS_N

输出格式

打印您获得的物品种类数。

样例 #1

样例输入 #1

3
apple
orange
apple

样例输出 #1

2

样例 #2

样例输入 #2

5
grape
grape
grape
grape
grape

样例输出 #2

1

样例 #3

样例输入 #3

4
aaaa
a
aaa
aa

样例输出 #3

4

说明

数据规模与约定

  • 1N2×1051 \leq N \leq 2\times 10^5
  • SiS_i 由小写英文字母组成,长度在 111010 之间(包括首尾字母)。

样例 11 解释

您有两种物品:苹果 "和 "橙子"。