bool Polinome(string st) { for (int i = 0; i < st.length(); ++i) if (st[i] != st[st.length() - i - 1]) return false; return true; }