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
#include "bits/stdc++.h"
 
using namespace std;

template<typename _T> void _debug(const char *s, _T x){ cerr << s << " = " << x << "\n";}
template<typename _T, typename... R> void _debug(const char *s, _T x, R... r){ while(*s != ',') cerr << *s++; cerr << " = " << x << ", "; _debug(s + 1, r...);}
 
#define debug(...)  _debug(#__VA_ARGS__,  __VA_ARGS__)
 
#define sz(s)   int32_t(s.size())
#define all(x)  begin(x), end(x)
#define getuniqe(x) x.erase(unique(all(x)), end(x))
#define X first
#define Y second
 
using ll = long long;
using ld = long double;

#define int ll

const int n = 18;
int a[n], b[n];

int32_t main() {
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int sumA = 0, sumB = 0;
    for (int i = 0; i < n; i++) {
        int x;  cin >> x;
        a[x]++;
        sumA += x;
    }
    for (int i = 0; i < n; i++) {
        int x;  cin >> x;
        b[x]++;
        sumB += x;
    }
    if (sumA > sumB) {
        cout << "Algosia\n";
        return 0;
    }
    if (sumA < sumB) {
        cout << "Bajtek\n";
        return 0;
    }
    for (int i = 10; i >= 0; i--) {
        if (a[i] > b[i]) {
            cout << "Algosia\n";
        } else if (a[i] < b[i]){
            cout << "Bajtek\n";
        } else continue;
        return 0;
    }
    cout << "remis\n";
    return 0;
}