{"raw_statement":[{"iden":"problem statement","content":"A basketball game is being played, and the score is now $X$\\-$Y$. Here, it is guaranteed that $X \\neq Y$.  \nCan the team which is behind turn the tables with a successful three-point goal?  \nIn other words, if the team which is behind earns three points, will its score become strictly greater than that of the other team?"},{"iden":"constraints","content":"*   $0 \\le X \\le 100$\n*   $0 \\le Y \\le 100$\n*   $X \\neq Y$\n*   $X$ and $Y$ are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$X$ $Y$"},{"iden":"sample input 1","content":"3 5"},{"iden":"sample output 1","content":"Yes\n\nThe team with $3$ points is behind.  \nAfter a successful $3$\\-point goal, it will have $6$ points, which is greater than that of the other team - $5$.  \nThus, we should print `Yes`."},{"iden":"sample input 2","content":"16 2"},{"iden":"sample output 2","content":"No\n\nThe gap is too much. The team which is behind cannot overtake the other by getting $3$ points."},{"iden":"sample input 3","content":"12 15"},{"iden":"sample output 3","content":"No\n\nA $3$\\-point goal will tie the score but not turn the tables."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}