#abc084b. [abc084_b]Postal Code

[abc084_b]Postal Code

Problem Statement

The postal code in Atcoder Kingdom is A+B+1A+B+1 characters long, its (A+1)(A+1)-th character is a hyphen -, and the other characters are digits from 0 through 9.

You are given a string SS. Determine whether it follows the postal code format in Atcoder Kingdom.

Constraints

  • 1A,B51≤A,B≤5
  • S=A+B+1|S|=A+B+1
  • SS consists of - and digits from 0 through 9.

Input

Input is given from Standard Input in the following format:

AA BB SS

Output

Print Yes if SS follows the postal code format in AtCoder Kingdom; print No otherwise.


Sample Input 1

3 4
269-6650

Sample Output 1

Yes

The (A+1)(A+1)-th character of SS is -, and the other characters are digits from 0 through 9, so it follows the format.


Sample Input 2

1 1
---

Sample Output 2

No

SS contains unnecessary -s other than the (A+1)(A+1)-th character, so it does not follow the format.


Sample Input 3

1 2
7444

Sample Output 3

No