//lg p3370
//Copyright yeyou26
#include<bits/stdc++.h>
using namespace std;
#define ull unsigned long long
const ull p=998244353;
string s;
ull now_hash,v[100005];
int cnt,ans,n;
void get_hash()
{
now_hash=0;
ull now_p=1;
for(int i=1;s[i];i++)
{
now_hash+=s[i]*now_p;
now_p*=p;
}
}
void do_compare()
{
bool flag=0;
for(int i=1;i<=cnt;i++)
{
if(v[i]==now_hash)
{
flag=1;
break;
}
}
if(flag==0)
{
ans++;
v[++cnt]=now_hash;
}
}
void solve()
{
for(int i=1;i<=n;i++)
{
cin>>s;
get_hash();
do_compare();
}
printf("%d",ans);
}