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
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#include <bits/stdc++.h>
using namespace std;

int ile1[20];
int ile2[20];

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int ilea = 0;
    int ileb = 0;

    for(int i = 1; i <= 18; ++i) {
        int x;
        cin >> x;
        ++ile1[x];
        ilea += x;
    }

    for(int i = 1; i <= 18; ++i) {
        int x;
        cin >> x;
        ++ile2[x];
        ileb += x;
    }

    if(ileb > ilea) {
        cout << "Bajtek";
        return 0;
    } else if(ileb < ilea) {
        cout << "Algosia";
        return 0;
    }

    if(ile1[10] > ile2[10]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[10] < ile2[10]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[9] > ile2[9]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[9] < ile2[9]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[8] > ile2[8]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[8] < ile2[8]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[7] > ile2[7]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[7] < ile2[7]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[6] > ile2[6]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[6] < ile2[6]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[5] > ile2[5]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[5] < ile2[5]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[4] > ile2[4]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[4] < ile2[4]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[3] > ile2[3]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[3] < ile2[3]) {
        cout << "Bajtek";
        return 0;
    }

    if(ile1[2] > ile2[2]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[2] < ile2[2]) {
        cout << "Bajtek";
        return 0;
    }

        if(ile1[1] > ile2[1]) {
        cout << "Algosia";
        return 0;
    } else if (ile1[1] < ile2[1]) {
        cout << "Bajtek";
        return 0;
    }

    cout << "remis";

    return 0;
}