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

int x,s1,s2, baj[12], alg[12];

int main()
{
	for(int i=1; i<=18; i++) cin >> x, s1+=x, alg[x]++;
	for(int i=1; i<=18; i++) cin >> x, s2+=x, baj[x]++;

	if(s1 > s2) cout << "Algosia\n";
	else if(s2 > s1) cout << "Bajtek\n";
	else
	{
		for(int i=10; i>0; i--)
		{
			if(alg[i] > baj[i])
			{
				cout << "Algosia\n";
				return 0;
			} 
			else if(baj[i] > alg[i])
			{
				cout << "Bajtek\n";
				return 0;
			}
		}
		cout << "remis\n";
	}
}