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

int main() {
	vector <int> v;
	cout << v.size() - 1 << endl;
	return 0;
}