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
51
52
53
54
55
56
57
58
59
60
61
#include <bits/stdc++.h>

#define int long long
#define ll long long
#define ld long double
#define endl '\n'
#define st first
#define nd second
#define pb push_back
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
using namespace std;
int inf=1000000000000000007;
int mod=1000000007;
int mod1=998244353;

const bool multi=1;

int cnt[17];

signed main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int S=0,x;
    for(int i=0;i<18;i++)
    {
        cin>>x;
        cnt[x]++;
        S+=x;
    }
    for(int i=0;i<18;i++)
    {
        cin>>x;
        cnt[x]--;
        S-=x;
    }
    if(S>0) cout<<"Algosia";
    else if(S<0) cout<<"Bajtek";
    else
    {
        for(int i=10;i>=0;i--)
        {
            if(cnt[i]>0)
            {
                cout<<"Algosia";
                return 0;
            }
            if(cnt[i]<0)
            {
                cout<<"Bajtek";
                return 0;
            }
        }
        cout<<"remis";
    }


    return 0;
}