Problem4516--竞选班长

4516: 竞选班长

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

Description

竞选班长的条件是:语文、数学、英语三门成绩中,至少两门大于或等于 lns="http://www.w3.org/1998/Math/MathML">90 分,而且体育不能低于 lns="http://www.w3.org/1998/Math/MathML">85 分。

给定某人的语文、数学、英语及体育成绩,请判断他能否竞选班长?

Input

  • 第一行:单个整数 lns="http://www.w3.org/1998/Math/MathML">a ,表示语文成绩;
  • 第二行:单个整数 lns="http://www.w3.org/1998/Math/MathML">b,表示数学成绩;
  • 第三行:单个整数 lns="http://www.w3.org/1998/Math/MathML">c,表示英语成绩;
  • 第四行:单个整数 lns="http://www.w3.org/1998/Math/MathML">d,表示体育成绩。



Output

  • 如果可以竞选班长,输出 Qualified
  • 否则,输出 Not qualified

Sample Input Copy

91
96
99
89

Sample Output Copy

Qualified

HINT

样例2

84
91
85
95

Not qualified

语数外中,只有一门达到了要求

Source/Category