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

int a[11],sa;
int b[11],sb;
int n = 18;

void odp(bool b){
    if(b) cout << "Algosia";
    else cout << "Bajtek";
    exit(0);
}

int main(){
    
    for(int i = 0;i < n;i++){
        int c;
        cin >> c;
        a[c]++;
        sa += c;
    }
    for(int i = 0;i < n;i++){
        int c;
        cin >> c;
        b[c]++;
        sb += c;
    }
    if(sa != sb) odp(sa > sb);
    
    for(int i = 10;i >= 0;i--){
        if(a[i] != b[i]) odp(a[i] > b[i]);
    }
    cout << "remis";
    
    return 0;
}