#include<stdio.h>
#include<string.h>
char a[10000];
int main()
{
int t,i=0;
while(scanf("%d",&t)==1)
{
while(t--)
{
getchar();
scanf("%s",a);
i++;
printf("Case #%d: ",i);
int j,flog=0;
for(j=0;j<strlen(a);j++)
{
if(a[j]==':'&&a[j+1]=='/'&&a[j+2]=='/')
{
flog=1;
j+=2;
}
else if(flog&&(a[j]!='/'&&a[j]!=':')) printf("%c",a[j]);
else if((a[j]=='/'||a[j]==':')&&flog) break;
}
printf("\n");
}
}
return 0;
}