0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 08:45:25 +00:00
OI-codes/Luogu/problem/CF12A/CF12A.cpp

22 lines
334 B
C++
Raw Normal View History

2020-10-22 13:03:21 +00:00
#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;
}