#include<bits/stdc++.h>
using namespace std;
int main(){
string a,b;
int c,d,e;
cin>>c;
d=c;
getline(cin,a);
while(c--){
getline(cin,a);
getline(cin,b);
if(a==b)
cout<<"Case "<<d-c<<": Yes"<<'\n';
else{
e=a.size();
while(e--)
if(a[e]==' ')
a.erase(e,1);
e=b.size();
while(e--)
if(b[e]==' ')
b.erase(e,1);
if(a!=b)
cout<<"Case "<<d-c<<": Wrong Answer"<<'\n';
else
cout<<"Case "<<d-c<<": Output Format Error"<<'\n';
}
}
}