#include <iostream> #include <bits/stdc++.h> using namespace std; bool isNum(string& str) { for (auto s : str) { if (!isdigit(s)) return false; } return true; } int main() { pair<int,int> pos(0,0); string str; while (getline(cin, str, ';')) { ...