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
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double db;
typedef pair<int,int> pii;
typedef vector<int> vi;
#define pb push_back
#define fi first
#define se second
#define rep(i,b,e) for(int i=(b); i<(e); i++)
#define each(a,x)  for(auto &a : (x))
#define all(x) (x).begin(), (x).end()
#define sz(x)  (int)(x).size()

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    vi cntA(11),cntB(11);
    int sumA=0,sumB=0;
    rep(i,0,18){
        int a;
        cin >> a;
        cntA[a]++;
        sumA += a;
    }   
    rep(i,0,18){
        int a;
        cin >> a;
        cntB[a]++;
        sumB += a;
    }   
    if(sumA!=sumB){
        cout << (sumA>sumB?"Algosia":"Bajtek");
        return 0;
    }
    for(int i=10; i>=0; --i){
        if(cntA[i]!=cntB[i]){
            cout << (cntA[i]>cntB[i]?"Algosia":"Bajtek");
            return 0;
        }
    }
    cout << "remis";
    return 0;
}