102850: [AtCoder]ABC285 A - Edge Checker 2

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:1 Solved:0

Description

Score : $100$ points

Problem Statement

Determine if there is a segment that directly connects the points numbered $a$ and $b$ in the figure below.

Constraints

  • $1 \leq a \lt b \leq 15$
  • $a$ and $b$ are integers.

Input

The input is given from Standard Input in the following format:

$a$ $b$

Output

Print Yes if there is a segment that directly connects the points numbered $a$ and $b$; print No otherwise.


Sample Input 1

1 2

Sample Output 1

Yes

In the figure in the Problem Statement, there is a segment that directly connects the points numbered $1$ and $2$, so Yes should be printed.


Sample Input 2

2 8

Sample Output 2

No

In the figure in the Problem Statement, there is no segment that directly connects the points numbered $2$ and $8$, so No should be printed.


Sample Input 3

14 15

Sample Output 3

No

Input

题意翻译

### 题目 上图是一张图。给定节点编号 $a,b$,判断 $a,b$ 是否直接有边相连。 ### 数据范围 $1\le a < b\le 15$,$a,b$ 均为整数。

加入题单

算法标签: