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

int main() {
	vector<int> v {1, 2, 3};

	v.erase(v.cbegin());

	return 0;
}