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
62
#pragma GCC optimize ("O3")
#include<bits/stdc++.h>
using namespace std;

#define FOR(i, n) for (int i = 0; i < n; i++)
#define f first
#define s second
#define pb push_back
#define all(s) s.begin(), s.end()
#define sz(s) (int)s.size()

using vi = vector<int>;

void solve()
{
    vi a(18), b(18);
    FOR (i, 18)
    {
        cin >> a[i];
    }

    FOR (i, 18)
    {
        cin >> b[i];
    }

    sort(all(a));
    sort(all(b));
    reverse(all(a));
    reverse(all(b));

    int A = accumulate(all(a), 0);
    int B = accumulate(all(b), 0);

    if (a == b)
    {
        cout << "remis\n";
        return;
    }
    else if (A > B or (A == B and a > b))
    {
        cout << "Algosia\n";
    }
    else
    {
        cout << "Bajtek\n";
    }
}

int main () {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int tests = 1;
    // cin >> tests;

    for (int test = 1; test <= tests; test++) {
        solve();
    }

    return 0;
}