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
#include <bits/stdc++.h>
using namespace std;
int tot,x,cnt[14];
int main() {
  for (int i=0; i<18; i++) {
    scanf("%d",&x);
    ++cnt[x];
    tot+=x;
  }
  for (int i=0; i<18; i++) {
    scanf("%d",&x);
    --cnt[x];
    tot-=x;
  }
  if (tot) {
    puts((tot>0)?"Algosia":"Bajtek");
    return 0;
  }
  for (int i=10; i>=0; i--) if (cnt[i]) {
    puts((cnt[i]>0)?"Algosia":"Bajtek");
    return 0;
  }
  puts("remis");
  return 0;
}