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

using namespace std;

int main(){
ios_base::sync_with_stdio(false);
cin.tie();
cout.tie();
  vector<int> A(12,0),B(12,0);
  int x;
  for(int i=0;i<18;i++){
    cin>>x;
    A[x]++;
    A[11]+=x;
  }
  for(int i=0;i<18;i++){
    cin>>x;
    B[11]+=x;
    B[x]++;
  }

  int k=11;
  while(k>=0 and A[k]==B[k])k--;
  if(A[k]>B[k])cout<<"Algosia";
  else if(A[k]<B[k])cout<<"Bajtek";
  else cout<<"remis";

  


}