You are a two dimensional explorer posted near the north pole of a distant two dimensional planet. The surface of the planet is a perfect circle, so there is no terrain on it to survey.
Then a distress call arrives from an alien ship that has crash landed somewhere on that surface. You built your own equipment, and all it reports is the angle between you and the crash site, measured at the center of the planet.
Your planet rover gets a measly 5 miles per gallon. From that angle and the gasoline you have left, decide whether you can drive to the crash site and back before the tank runs dry.
The rover travels along the surface and takes the shorter of the two arcs, so for an angle of Z degrees the central angle it actually covers is min(Z,360−Z) degrees.

The input holds a series of data sets, at most 100 of them, with no blank line between data sets.
One data set has three parts.
STARTX Y Z
ENDA single line ENDOFINPUT follows the last data set.
The circumference of a circle of radius r is 2πr, and π is 3.14159.
Print one line for each data set.
If the gasoline covers the round trip, print YES X, where X is the fuel left once you are back, written as a whole number of gallons with the fraction dropped.
If the gasoline is not enough, print NO Y, where Y is the distance you can travel on the fuel you have, written as a whole number of miles.