#include <iostream>
#include <string>
#include <cstdio>
using namespace std ;
int main ()
{
string s ;
int len , t , cnt ;
cin>>t ;
while (t--)
{
cin>>s ;
getchar () ;
len=s.size() ;
cnt=0 ;
if (len==5) cout<<"3"<<endl ;
else
{
if (s[0]=='t' ) cnt++ ;
if (s[1]=='w' ) cnt++ ;
if (s[2]=='o' ) cnt++ ;
if (cnt>=2) cout<<"2"<<endl ;
else cout<<"1"<<endl ;
}
}
return 0 ;
}
#include <string>
#include <cstdio>
using namespace std ;
int main ()
{
string s ;
int len , t , cnt ;
cin>>t ;
while (t--)
{
cin>>s ;
getchar () ;
len=s.size() ;
cnt=0 ;
if (len==5) cout<<"3"<<endl ;
else
{
if (s[0]=='t' ) cnt++ ;
if (s[1]=='w' ) cnt++ ;
if (s[2]=='o' ) cnt++ ;
if (cnt>=2) cout<<"2"<<endl ;
else cout<<"1"<<endl ;
}
}
return 0 ;
}