#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int main()
{
int i;
string str;
for(i=1; str!="*"; i++)
{
cin>>str;
if(str=="*")
{
break;
}
else if( str=="Hajj")
{
printf("Case %d: Hajj-e-Akbar\n", i);
}
else
{
printf("Case %d: Hajj-e-Asghar\n", i);
}
}
return 0;
}
No comments:
Post a Comment