// Declaring and initialising vectors
#include <iostream>
#include <vector>
using namespace std;

int main()
{

  vector<int> sv1(5), sv2(5,12);

  for (int j=0; j<5 ; j++)
  {
    sv1[j] = j*2;

    cout << "  sv1(" << j << ") = " << sv1[j]
         << "  sv2(" << j << ") = " << sv2[j]
         << endl;
  }

  return 0;

}
