AT_abc415_a [ABC415A] Unsupported Type

Description

You are given an integer sequence $ A=(A_1,A_2,\dots,A_N) $ of length $ N $ and an integer $ X $ . Determine whether $ X $ is contained in $ A $ .

Input Format

The input is given from Standard Input in the following format: > $ N $ $ A_1 $ $ A_2 $ $ \dots $ $ A_N $ $ X $

Output Format

If $ X $ is contained in $ A $ , print `Yes`; otherwise, print `No`.

Explanation/Hint

### Sample Explanation 1 We have $ A=(3,1,4,1,5) $ and $ X=4 $ ; $ X $ is contained in $ A $ . ### Sample Explanation 2 $ X $ may be contained in $ A $ multiple times. ### Constraints - All input values are integers. - $ 1 \le N \le 100 $ - $ 1 \le A_i \le 100 $ - $ 1 \le X \le 100 $