#407. 查找数

查找数

No submission language available for this problem.

Background

Special for beginners, ^_^

Description

在一个有 n (1<=n<=1000)个数的数组中,查找是否存在数x,如果存在则输出这个数,不存在输出 no

Format

Input

第一行为 n, 第二行为 n 个数,第三行为 x

Output

存在输出这个数,不存在输出 no

Samples

5
1 2 3 4 5
4
4

Limitation

1s, 1024KiB for each test case.