1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include<bits/stdc++.h>

using namespace std;

int main()
{
    vector <int> A (18), B (18);
    int a=0, b=0;
    for (int i=0; i<18; i++)
    {
        cin >> A[i];
        a+=A[i];
    }
    for (int i=0; i<18; i++)
    {
        cin >> B[i];
        b+=B[i];
    }
    if (a>b)
        cout << "Algosia\n";
    else if (b>a)
        cout << "Bajtek\n";
    else
    {
        bool lol=false;
        int porownywator=11;
        a=0; b=0;
        while (lol==false && porownywator!=1)
        {
            porownywator--;
            a=0; b=0;
            for (int i=0; i<18; i++)
            {
                if (A[i]==porownywator)
                    a++;
                if (B[i]==porownywator)
                    b++;
            }
            //cout << "x\n";
            if (a!=b)
                lol=true;
        }
        if (a>b)
            cout << "Algosia\n";
        else if (b>a)
            cout << "Bajtek\n";
        else if (a==b)
            cout << "remis\n";
    }
}