//查找字符串用find
#include <bits/stdc++.h>
using namespace std;
int b;//记录行数
string str;//存储每行字符
int num;
int i;//记录下标
int fir=0;//记录第一次出现的行数
int main(){
b=1;
num = 0;
while(getline(cin,str)&&str!=".")
{
i = 0;
while((i=str.find("chi1 huo3 guo1",i))&&i<str.size()){
num++;//找到了就记录给num
if(num==1){
fir=b;
}
i+=11;
}
b++;
}
cout<<b-1<<endl;
if(fir>=1) cout<<fir<<' ';
if(num==0)printf("-_-#");
else cout<<num;
return 0;
}