Ace is applying to the University of Waterloo Software Engineering and he wants to know whether his top 6 average and Admission Information Form. Given his top six integer grades, yes
if Ace can make it. Otherwise, output no
.
Input Specification
The first six lines of input are his six integer marks.
The next line is the integer AIF score.
The final line is the integer admission requirement.
Output Specification
yes
if Ace can get into Waterloo Software Engineering, no
if he cannot.
Sample Input 1
Copy
95
96
92
88
98
94
5
96
Sample Output 1
Copy
yes
Sample Input 2
Copy
75
79
69
72
88
90
3
82
Sample Output 2
Copy
no
Comments
The first sentence has an incomplete train of thought.