//
#include<bits/stdc++.h>
using namespace std;
// #define int long long
void solve()
{
double xb,xc,yc,x,y;
cin>>xb>>xc>>yc>>x>>y;
printf(
yc/xc>y/x && y/(x-xb)>yc/(xc-xb) && x>0 && y>0 ?
"yes\n" : "no\n"
);
}
signed main()
{
solve();
return 0;
}
作者 | 乐意奥AI