#include<iostream>
#include<iterator>
#include<vector>
using namespace std;
int main()
{
istream_iterator<int> begin_integers(cin);
istream_iterator<int> end_integers;
std::vector<int> ints(begin_integers,end_integers); //read all the integers supplied on stdin and store them in a vector of ints.
return 0;
}