#include <iostream>
#include <vector>
using namespace std;

int main() {
    vector<int> v;
    cout << v[0] << endl;
}
