cout << "Enter the values of a and b" << endl;
cin >> a >> b; //cascading the cin operator
#include<iostream>
#include<sstream> //***** THISSS must
#include<vector>
using namespace std;
int main()
{
// Below method is for when you DO NOT KNOW the number of input integers you are to accept
// Accepts these a String on one line and adds the INtegers onto a vector for storage and easier access
vector<int> pack;
string name;
getline(cin,name) ;
istringstream is(name);
int num;
while(is>>num){
pack.push_back(num);
}
/*
for(int x:pack){
cout << x << endl; // print optional...just for checking
} */
}