#602. 找单词

找单词

题目描述

给以长字符串(一篇文章,所有单词都由空格或单词结尾的句点"."隔开),另给一个单词,
判断文章中是否包含这一单词(大小写字母敏感)?

## 输入格式

有2行: 第一行,一个长的字符串(含空格); 第二行,一个子串(单词,其中不含空格)。

输出格式

输出“yes”或"no"

## 样例 #1

### 样例输入 #1

```
It is spring. It is sunny and cloudy today. There are many big trees in the park. 
trees
```

### 样例输出 #1

```
yes
```

## 样例 #2

### 样例输入 #2

```
It is spring. It is sunny and cloudy today. There are many biger trees in the park. 
big
```

### 样例输出 #2

```
no
```