#include <iostream>
using namespace std;

int main(){
    int x1, x2, x3, y1, y2;
    cin >> x1 >> y1 >> x2 >> y2 >> x3;
    cout << (y1 == y2 ? "Yes" : "No") << '\n';
}