The AP Computer Science A Exam covers 10 major units. However, these units aren't necessarily weighed the same. For instance, the Iteration unit is worth upwards of 22.5%, while the Inheritance unit only covers 10% of the exam.
Jayden is going to take an AP exam (not AP Computer Science) in a month, and he'd like to take advantage of the fact that different units are weighed differently on AP exams.
Jayden is confident that if he studies a unit, he can get a perfect score on questions that cover that unit. However, he does so by sacrificing time meant to study other units.
There are units on the exam that Jayden is going to take, and he only has enough time and energy to study of these units.
Assuming that a percentage of 60% or more gets Jayden a score of 5, and that Jayden always gets perfect for the questions on the units he studied for, given the percentage weighing for all of these units, is it possible for Jayden to recieve a score of 5, if he only studies of these units?
Constraints
Input Specification
The first line will contain two space-separated integers, and .
The next lines each contain one integer: The weight in percent of the unit.
It is guaranteed that the sum of the percentages will always equal 100.
Output Specification
yes
if Jayden can score greater than or equal to 60, and no
if he can't
Sample Input
6 3
12
33
5
34
7
9
Sample Output
yes
Comments