#include using namespace std; int main(){ int x1, y1, x2, y2, x3; cin >> x1 >> y1 >> x2 >> y2 >> x3; int s1 = x3 * y1 / 2, s2 = x3 * y2 / 2; if(s1 == s2){ cout << "Yes" << endl; } else{ cout << "No" << endl; } return 0; }