AT_abc411_a [ABC411A] Required Length

Description

Takahashi wants to set his password for a certain website to a string $ P $ consisting of lowercase English letters. The password for that website must be a string of length at least $ L $ . Determine whether $ P $ satisfies the length condition, that is, whether it is a string of length at least $ L $ .

Input Format

The input is given from Standard Input in the following format: > $ P $ $ L $

Output Format

If $ P $ satisfies the length condition, print `Yes`; otherwise, print `No`.

Explanation/Hint

### Sample Explanation 1 The length of `chokudai` is $ 8 $ , which is at least $ 5 $ , so it satisfies the length condition. Thus, print `Yes`. ### Sample Explanation 2 The length of `ac` is $ 2 $ , which is less than $ 3 $ , so it does not satisfy the length condition. Thus, print `No`. ### Sample Explanation 3 The length of `atcoder` is $ 7 $ , which is at least $ 7 $ , so it satisfies the length condition. Thus, print `Yes`. ### Constraints - $ P $ is a string consisting of lowercase English letters with length between $ 1 $ and $ 100 $ , inclusive. - $ 1 \leq L \leq 100 $ - $ L $ is an integer.