AT_abc465_a [ABC465A] Supermajority

Description

正の整数 $ A,B $ が与えられます。 $ \displaystyle A > B \times \frac{2}{3} $ であれば `Yes` を、そうでなければ `No` を出力してください。

Input Format

入力は以下の形式で標準入力から与えられる。 > $ A $ $ B $

Output Format

答えを出力せよ。

Explanation/Hint

### Sample Explanation 1 $ \displaystyle 316 > 465 \times \frac{2}{3} $ なので、`Yes` を出力します。 ### Sample Explanation 2 $ \displaystyle 101 > 248 \times \frac{2}{3} $ ではないので、`No` を出力します。 ### Sample Explanation 3 $ \displaystyle 666 > 999 \times \frac{2}{3} $ ではないので、`No` を出力します。 ### Constraints - $ 1 \leq A, B \leq 1000 $ - 入力される値はすべて整数