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
#include <iostream>
#include <vector>
#include <string>

using namespace std;

string solve(){
    int n = 18;
    vector<int> a(n);
    vector<int> b(n);
    vector<int> a_s(11,0);
    vector<int> b_s(11,0);

    for (int i = 0; i < n; i++){
        cin >> a[i];
        a_s[10] += a[i];
        if(a[i] > 0){
            a_s[a[i]-1]++;
        }
    }

    for (int i = 0; i < n; i++){
        cin >> b[i];
        b_s[10] += b[i];
        if(b[i] > 0){
            b_s[b[i]-1]++;
        }
    }

    for(int i = 10; i >= 0; i--){
        if(a_s[i] > b_s[i]){
            return "Algosia";
        }

        if(b_s[i] > a_s[i]){
            return "Bajtek";
        }
    }
    return "remis";
}

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

    cout << solve() << endl;
    
    return 0;
}