#include #include using namespace std; bool tukorSzam(string a) { //ez undorító de nincs jobb ötletem xd if (a[0] == a[7]) { if (a[1] == a[6]) { if (a[2] == a[5]) { if (a[3] == a[4]) { return true; } return false; } return false; } return false; } return false; } int main() { int n; cin>>n; vector telefonszamok(n); for (int i = 0; i < n; i++) { cin >> telefonszamok[i]; } cout< out; for (int i = 0; i < telefonszamok.size(); i++) { if (tukorSzam(telefonszamok[i])) { cout<