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
#include <bits/stdc++.h>
using namespace std;
int a,t[11],t2[11],wyn1,wyn2;
int main()
{
    for (int i=1;i<=18;i++)
    {
        cin >> a;
        wyn1+=a;
        t[a]++;
    }
    for (int i=1;i<=18;i++)
    {
        cin >> a;
        wyn2+=a;
        t2[a]++;
    }
    if (wyn2>wyn1)
    {
        cout << "Bajtek";
        return 0;
    }
    else if (wyn1>wyn2)
    {
        cout << "Algosia";
        return 0;
    }
    else
    {
        for (int i=10;i>=2;i--)
        {
            if (t[i]>t2[i])
            {
                cout << "Algosia";
                return 0;
            }
            else if (t2[i]>t[i])
            {
                cout << "Bajtek";
                return 0;
            }
        }
    }
    cout << "remis";
}