#include using namespace std; int main() { int t; cin >> t; for (int i = 0; i < t; i++) { int x1, x2, y1, y2; char d1, d2; cin >> x1 >> y1 >> d1 >> x2 >> y2 >> d2; bool res; if (d1 == d2) res = false; else if (d1 == 'R' && d2 == 'L') { if (x1 < x2 && y1 == y2) res = true; else res = false; } else if (d1 == 'L' && d2 == 'R') { if (x1 > x2 && y1 == y2) res = true; else res = false; } else if (d1 == 'U' && d2 == 'D') { if (y1 < y2 && x1 == x2) res = true; else res = false; } else if (d1 == 'D' && d2 == 'U') { if (y1 > y2 && x1 == x2) res = true; else res = false; } else { if (d1 == 'R') { int d; if (d2 == 'U') d = 1; else d = -1; if (x2 - x1 > 0 && x2 - x1 == d * (y1 - y2)) res = true; else res = false; } else if (d1 == 'L') { int d; if (d2 == 'U') d = 1; else d = -1; if (x2 - x1 < 0 && x1 - x2 == d * (y1 - y2)) res = true; else res = false; } else if (d1 == 'U') { int d = 0; if (d2 == 'L') d = -1; else d = 1; if (y2 - y1 > 0 && y2 - y1 == d * (x1 - x2)) res = true; else res = false; } else { int d = 0; if (d2 == 'L') d = -1; else d = 1; if (y2 - y1 < 0 && y1 - y2 == d * (x1 - x2)) res = true; else res = false; } } if (res) cout << "Yes" << endl; else cout << "No" << endl; } }