#include<iostream> #include<queue> #include <bits/stdc++.h> using namespace std; int main() { string text; getline(cin, text); queue<string> que; string str; for(int i=0;i<text.length();i++) { if(text[i] != ';') { str += text[i]; ...