std::vector doesn't have a member function named 'Add'.
1 2 3 4 5 6 7 8 9
if (/*...*/){
//vector<int> store;
//note: Judging from your code's layout, you probably meant to name this vector something else.
//I'll call it temp
vector<int> temp;
temp.push_back(i);
temp.push_back(j);
store.push_back(temp);
}