Chef has recently started investing in
Bitcoin.
He assigns a
market risk level
(from
to
), where:
Chef will buy Bitcoin only if the risk level is or less.
Given the current risk level , determine whether Chef should buy Bitcoin.
Print "YES" if Chef should buy, otherwise print "NO".
Print YES if Chef should buy
Bitcoin, Otherwise, print NO.
You may print each character of the string
in uppercase or lowercase (for example, the
strings YES, yEs,
yes, and yeS will
all be treated as identical).
2
YES
The current market risk is
.
Since
is not larger than
, the risk is small enough, and Chef will
buy Bitcoin.
4
YES
The current market risk is
.
Since
is not larger than
, the risk is small enough, and Chef will
buy Bitcoin.
5
NO
The current market risk is
.
Since
is larger than
, the risk is too much, and Chef will
not buy Bitcoin.