A - Health M Death Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

魔法使いの高橋君がモンスターと戦っています。

高橋君が魔法を使うと、体力が M の倍数であるモンスターを倒すことができます。体力が M の倍数でないモンスターに対しては何の効果もありません。

高橋君の魔法によって、体力が H のモンスターを倒すことができるでしょうか?

制約

  • 1 \leq M \leq 1000
  • 1 \leq H \leq 1000
  • M 及び H は整数

入力

入力は以下の形式で標準入力から与えられる。

M H

出力

魔法でモンスターを倒すことができるなら Yes を、できないなら No を出力せよ。


入力例 1

10 120

出力例 1

Yes

高橋君の魔法は、体力が 10 の倍数であるモンスターを倒すことができます。

12010 の倍数なので、体力が 120 のモンスターは倒すことができます。


入力例 2

10 125

出力例 2

No

12510 の倍数ではないので、体力が 125 のモンスターは倒すことはできません。

Score : 100 points

Problem Statement

Takahashi, the magician, is fighting with a monster.

His magic can defeat a monster whose health is a multiple of M. It has no effect on a monster whose health is not a multiple of M.

Can his magic defeat a monster whose health is H?

Constraints

  • 1 \leq M \leq 1000
  • 1 \leq H \leq 1000
  • M and H are integers.

Input

Input is given from Standard Input in the following format:

M H

Output

If Takahashi's magic can defeat the monster, print Yes; otherwise, print No.


Sample Input 1

10 120

Sample Output 1

Yes

Takahashi's magic can defeat a monster whose health is a multiple of 10.

120 is a multiple of 10, so his magic can defeat the monster with health 120.


Sample Input 2

10 125

Sample Output 2

No

125 is not a multiple of 10, so his magic cannot defeat the monster with health 125.