#include<bits/stdc++.h>
using namespace std;
int main(){
int i;
for (i=1;;i++){
printf("The result of No. %d Case is: ",i);
system("./rand");
system("./std");
system("./tmp");
if(system("diff std.out tmp.out")){
printf("Wrong Answer\n");
return 0;
}
else printf("Accepted\n");
}
return 0;
}