#TOKIOMARINE2020B. Tag

Tag

Score : 200200 points

Problem Statement

Two children are playing tag on a number line. (In the game of tag, the child called "it" tries to catch the other child.) The child who is "it" is now at coordinate AA, and he can travel the distance of VV per second. The other child is now at coordinate BB, and she can travel the distance of WW per second.

He can catch her when his coordinate is the same as hers. Determine whether he can catch her within TT seconds (including exactly TT seconds later). We assume that both children move optimally.

Constraints

  • 109A,B109-10^9 \leq A,B \leq 10^9
  • 1V,W1091 \leq V,W \leq 10^9
  • 1T1091 \leq T \leq 10^9
  • ABA \neq B
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA VV

BB WW

TT

Output

If "it" can catch the other child, print YES; otherwise, print NO.

1 2
3 1
3
YES
1 2
3 2
3
NO
1 2
3 3
3
NO