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
#include <iostream> 
#include <algorithm>
using namespace std; 


int main() 
{ 
    
	int n = 18;
	int alg[n], baj[n];
	int algo = 0, bajto = 0;
	
    for(int i = 0; i < n; i++) {
		cin >> alg[i];
		algo += alg[i];
	}
    for(int i = 0; i < n; i++) {
		cin >> baj[i];
		bajto += baj[i];
	}
	
	if(algo > bajto) {
		cout << "Algosia";
	} else if(bajto > algo) {
		cout << "Bajtek";
	} else {
		sort(alg, alg+n);
		sort(baj, baj+n);
		
		int x = 17;
		while(x > 0 && alg[x] == baj[x]) {x--;}
		if(x == 0) {cout << "remis";}
		else if(alg[x] > baj[x]) {cout << "Algosia";}
		else {cout << "Bajtek";}
	}
	
	
  
    return 0; 
}