#include using namespace std; using ll = long long; constexpr int INF = (int)1e9 + 1001010; constexpr ll llINF = (ll)4e18 + 22000020; const string endn = "\n"; template inline auto vector2(size_t i, size_t j, const T &init = T()) {return vector(i, vector(j, init));} const string ELEM_SEPARATION = " ", VEC_SEPARATION = endn; template istream& operator >>(istream &i, vector &A) {for(auto &I : A) {i >> I;} return i;} template ostream& operator <<(ostream &o, const vector &A) {int i=A.size(); for(auto &I : A){o << I << (--i ? ELEM_SEPARATION : "");} return o;} template ostream& operator <<(ostream &o, const vector> &A) {int i=A.size(); for(auto &I : A){o << I << (--i ? VEC_SEPARATION : "");} return o;} template vector& operator ++(vector &A, int n) {for(auto &I : A) {I++;} return A;} template vector& operator --(vector &A, int n) {for(auto &I : A) {I--;} return A;} template bool chmax(T &a, const U &b) {return ((a < b) ? (a = b, true) : false);} template bool chmin(T &a, const U &b) {return ((a > b) ? (a = b, true) : false);} ll floor(ll a, ll b){if(b < 0) a = -a, b = -b; return a >= 0 ? a/b : (a+1)/b - 1;} ll ceil (ll a, ll b){if(b < 0) a = -a, b = -b; return a > 0 ? (a-1)/b + 1 : a/b;} ll bit(unsigned long long val, unsigned long long digit){return (val >> digit) & 1;} // ================================== ここまでテンプレ ================================== int main(int argc, char *argv[]){ ios::sync_with_stdio(false); cin.tie(nullptr); auto s = vector2(3, 3); cin >> s; bool ok = false; auto check = [&](char c1, char c2) -> bool { bool ok = true; for(int i = 0; i < 3; i++){ for(int j = 0; j < 3; j++){ if((i + j) % 2 == 0) ok &= s[i][j] == c1; else ok &= s[i][j] == c2; } } return ok; }; ok |= check('#', '.'); ok |= check('.', '#'); if(ok) cout << "Yes" << endn; else cout << "No" << endn; return 0; }