gahui and sousenkyo 3

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

Gahui is watching the annual character election. After the election, The top 16 characters receive enormous benefits for one year. For that reason, fans vote passionately to get their favorite characters into the top 16. Remarkably, at least one Cinderella appears in every election, achieving an outstanding outcome.

Election results are announced twice: preliminary and final results. The vote count information for character x is as follows:

  • Character x obtained $p_x$ votes when announcing the preliminary result.
  • Character x obtained $r_x$ votes when announcing the final result.

$v_x$ is defined as $p_x$ divided by $r_x$. The type of character x is determined by the value $v_x$.

  • If $v_x \lt 0.2$, the type of character x is weak.
  • If $0.2 \le v_x \lt 0.4$, the type of character x is normal.
  • If $0.4 \le v_x \lt 0.6$, the type of character x is strong.
  • If $0.6 \le v_x$, the type of character x is very strong.

Preliminary and final results of character x are given. Print the type of character x.

입력

$p_x$ (preliminary result) and $r_x$ (final result) are given, separated by space.

출력

Print the answer to the question.

제한

  • $p_x \le r_x$
  • $1 \le p_x \le 60\,000$
  • $1 \le r_x \le 250\,000$

힌트

Who can foresee such an unexpected outcome if the final election result deviates significantly from the preliminary results?