#9878. Crane and Turtle

Crane and Turtle

题目描述

There are some animals in a garden. Each of them is a crane with two legs or a turtle with four legs.

Takahashi says: "there are XX animals in total in the garden, and they have YY legs in total." Determine whether there is a combination of numbers of cranes and turtles in which this statement is correct.

花园里有一些动物。每只动物都是两只脚的仙鹤或四只脚的乌龟。

高桥说:"花园里一共有 XX 只动物,它们一共有 YY 条腿"。请判断鹤和乌龟的数量组合是否正确。

输入格式

输入内容按以下格式标准输入:

XX YY

输出格式

如果鹤和龟的数量组合正确,则打印 "是";否则,打印 "否"。

样例 #1

样例输入 #1

3 8

样例输出 #1

Yes

样例 #2

样例输入 #2

2 100

样例输出 #2

No

样例 #3

样例输入 #3

1 2

样例输出 #3

Yes

说明

数据规模与约定

  • 1X1001 \leq X \leq 100
  • 1Y1001 \leq Y \leq 100
  • 所有输入值均为整数。

样例 11 解释

如果有两只鹤和一只乌龟,那么 "花园里一共有 33 只动物,它们一共有 88 条腿 "的说法是正确的。因此,在鹤和乌龟的数量组合中,这句话是正确的。

样例 22 解释

鹤和龟的数量组合中没有一个是正确的。

样例 33 解释

我们还考虑了只有鹤或只有龟的情况。