#include<iostream> #include<vector> using namespace std; int main() { vector<int> a; int b; while(cin>>b){ a.push_back(b); char ch = getchar(); ...