#include<iostream> #include<string> #include<vector> using namespace std; void getCoordinate(vector<int>& start, const string& str); int main(){ string str; while(cin >> str){ vector<int> beg(2, 0); getCoordinate(beg, str); ...