PROGRAMMING:Numbers with K 3
###Task description
```
Input two positive integers m and K, 1 < m < 100000, 1 < K < 5, judge whether M can be divided by 19, and exactly contains K 3. If the condition is met, output yes, otherwise, output No.
For example, enter:
43833 3
If the condition is satisfied, output yes.
If you enter:
39331 3
Although there are three 3's, they can't be divided by 19, and they don't meet the conditions, so they should output No.
```
###Input format:
M and K, separated by a single space.
###Output format:
Yes is output when the condition is satisfied, no is output when the condition is not satisfied.
###Input example:
```in
43833 3
```
###Output example:
```out
YES
```
###Title Source
Note: this topic is selected from openjudge website http://noi.openjudge.cn/ch0104/30/ .
answer:If there is no answer, please comment
```
Input two positive integers m and K, 1 < m < 100000, 1 < K < 5, judge whether M can be divided by 19, and exactly contains K 3. If the condition is met, output yes, otherwise, output No.
For example, enter:
43833 3
If the condition is satisfied, output yes.
If you enter:
39331 3
Although there are three 3's, they can't be divided by 19, and they don't meet the conditions, so they should output No.
```
###Input format:
M and K, separated by a single space.
###Output format:
Yes is output when the condition is satisfied, no is output when the condition is not satisfied.
###Input example:
```in
43833 3
```
###Output example:
```out
YES
```
###Title Source
Note: this topic is selected from openjudge website http://noi.openjudge.cn/ch0104/30/ .
answer:If there is no answer, please comment