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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <iostream>
#include <vector>

using namespace std;

int main()
{
	const string an = "Algosia";
	const string bn = "Bajtek";
	const string rn = "remis";

	vector<int> a(11, 0), b(11, 0);
	int sa{ 0 }, sb{ 0 };

	for (int i = 0; i < 18; i++)
	{
		int p;
		cin >> p;
		a[p]++;
		sa += p;
	}

	for (int i = 0; i < 18; i++)
	{
		int p;
		cin >> p;
		b[p]++;
		sb += p;
	}
	string response = "";

	if (sa > sb)
	{
		response = an;
	}
	else if (sa < sb)
	{
		response = bn;
	}
	else
	{
		for (int j = 10; j > 0; j--)
		{
			if (a[j] == b[j]) continue;

			if (a[j] > b[j])
			{
				response = an;
			}
			else
			{
				response = bn;
			}

			break;
		}
		
		if (response == "")
		{
			response = rn;
		}
	}
	cout << response << '\n';

	return 0;
}