Problem1791--查找整数

1791: 查找整数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 0  Solved: 0
[Submit] [Status] [Web Board] [Creator:]

Description

本题要求从输入的N个整数中查找给定的X。如果找到,输出X的位置(从0开始数);如果没有找到,输出“Not Found”。

Input

输入在第一行中给出两个正整数N(≤20)和X,第二行给出N个整数。数字均不超过长整型,其间以空格分隔。

Output

在一行中输出X的位置,或者“Not Found”。

Sample Input Copy

5 7
3 5 7 1 9

Sample Output Copy

2

Source/Category

357