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
47
48
49
50
51
52
#include<iostream>
using namespace std;
int main()
{
	int sa=0, sb=0, a[11]={0}, b[11]={0}, x=0, c;
	for(int i=0; i<36; i++)
	{
		if(i<18)
		{
			cin>>c;
			sa+=c;
			a[c]++;
		}
		else
		{
			cin>>c;
			sb+=c;
			b[c]++;
		}
	}
	
	if(sa!=sb)
	{
		if(sa>sb)
		cout<<"Algosia";
		else
		cout<<"Bajtek";
		
		x++;
	}
	else
	{
		for(int j=10; j>=0; j--)
		{
			if(a[j]!=b[j])
			{
				if(a[j]>b[j])
				cout<<"Algosia";
				else
				cout<<"Bajtek";
				
				x++;
				break;
			}
		}
	}
	
	if(x==0)
	cout<<"remis";
	
	return 0;
}