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
41
42
43
44
45
46
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main(){
	cin.tie(0);
	cout.tie(0);
	ios_base::sync_with_stdio(false);
	vector <int> tab;
	vector <int> tab2;
	int liczba;
	int ile=2,s=0,s1=0;
		for(int i=0;i<18;i++){
			cin>>liczba;
			tab.push_back(liczba);
			s+=liczba;
		}
		for(int i=0;i<18;i++){
			cin>>liczba;
			tab2.push_back(liczba);
			s1+=liczba;
		}
		bool p=false;
		if(s>s1){
			cout<<"Algosia";
			p=true;
		}
		else if(s1>s){
			cout<<"Bajtek";
			p=true;
		}
		if(p==false){
				sort(tab.begin(),tab.end());
				sort(tab2.begin(),tab2.end());
				for(int i=17;i>=0;i--){
					if(tab[i]>tab2[i]){
						cout<<"Algosia";
						break;
					}
					else if(tab2[i]>tab[i]){
						cout<<"Bajtek";
						break;
					}
				}	
		}
}