AT_abc465_a [ABC465A] Supermajority

Description

You are given positive integers $ A $ and $ B $ . If $ \displaystyle A > B \times \frac{2}{3} $ , output `Yes`; otherwise, output `No`.

Input Format

The input is given from Standard Input in the following format: > $ A $ $ B $

Output Format

Output the answer.

Explanation/Hint

### Sample Explanation 1 Since $ \displaystyle 316 > 465 \times \frac{2}{3} $ , output `Yes`. ### Sample Explanation 2 Since $ \displaystyle 101 > 248 \times \frac{2}{3} $ does not hold, output `No`. ### Sample Explanation 3 Since $ \displaystyle 666 > 999 \times \frac{2}{3} $ does not hold, output `No`. ### Constraints - $ 1 \leq A, B \leq 1000 $ - All input values are integers.