0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 18:38:47 +00:00
OI-codes/Codeforces/12/A/A.cpp
2022-09-25 20:39:35 +08:00

22 lines
337 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
string s, t;
cin >> t;
s += t;
cin >> t;
s += t;
cin >> t;
s += t;
for (int i = 0; i < 9; i++) {
if (s[i] != s[8 - i]) {
cout << "NO" << endl;
return 0;
}
}
cout << "YES" << endl;
return 0;
}