#include <iostream>
#include <vector>

using namespace std;

int dividi(int N, vector<int> V) {
    return 73;
}

// GRADER DI ESEMPIO, NON MODIFICARE

#ifndef EVAL

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

    int N; cin >> N;

    vector<int> V(N);
    for(auto &x: V) cin >> x;

    cout << dividi(N, V) << endl;
}

#endif
