Problem2253-- On and Off

2253: On and Off

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MB

Description

Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 100100 points

Problem Statement

Takahashi turns on the light of his room at SS o'clock (on the 2424-hour clock) every day and turns it off at TT o'clock every day.
The date may change while the light is on.
Determine whether the light is on at 3030 minutes past XX o'clock.

Constraints

  • 0 \leq S, T, X \leq 230S,T,X23
  • S \neq TS=T
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:
SSTTXX

Output

If the light is on at 3030 minutes past XX o'clock, print Yes; otherwise, print No.

Sample Input Copy

7 20 12

Sample Output Copy

Yes

HINT

The light is on between 77 o'clock and 2020 o'clock. At 3030 minutes past 1212 o'clock, it is on, so we print Yes.

Source/Category