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$ 均为整数。Output
分数:100分
问题描述
判断下图中编号为和的点之间是否存在直接连接的线段。
约束条件
- $1 \leq a \lt b \leq 15$
- $a$ 和 $b$ 都是整数。
输入
输入从标准输入以如下格式给出:
$a$ $b$
输出
如果存在直接连接编号为和的点的线段,则输出Yes
;否则输出No
。
样例输入1
1 2
样例输出1
Yes
在问题描述中的图中,存在直接连接编号为1和2的点的线段,因此应输出Yes
。
样例输入2
2 8
样例输出2
No
在问题描述中的图中,不存在直接连接编号为2和8的点的线段,因此应输出No
。
样例输入3
14 15
样例输出3
No