#include namespace nono { struct Init {}; void solve([[maybe_unused]] const Init& init) { int p, y1, y2; std::cin >> p >> y1 >> p >> y2 >> p; std::cout << (y1 == y2 ? "Yes" : "No") << std::endl; } } // namespace nono int main() { std::cin.tie(0)->sync_with_stdio(0); std::cout << std::fixed << std::setprecision(16); int t = 1; nono::Init init; while (t--) nono::solve(init); }