Saturday, June 25, 2016

SOLUTION OF URI 2031


//    Solution of  2031 Rock, Paper, Airstrike
//   (Mahmud_Jamil) BRUR






#include <stdio.h>
#include <string.h>
int main()
{
    int tst;
    char f[10], s[10];
    scanf("%d", &tst);
    while(tst--)
    {
        scanf("%s", f);
        scanf("%s", s);
        if(f[1]=='e' && s[1]=='e') printf("Sem ganhador\n");
        else if(f[1]=='t' && s[1]=='t') printf("Aniquilacao mutua\n");
        else if(f[1]=='a' && s[1]=='a') printf("Ambos venceram\n");
        else if(f[1]=='t' || (f[1]=='e' && s[1]=='a'))
            printf("Jogador 1 venceu\n");
        else printf("Jogador 2 venceu\n");
    }
    return 0;
}