Problem B: 在数组中找出给定的数

Problem B: 在数组中找出给定的数

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

Description

  问题描述:在数组中查找一个给定的数

     输入5个整数,将它们存入数组a中,再输入1个数x,然后在数组中查找x,如果找到,输出相应的下标,否则,输出“Not Found”。
   例:输入5个数:2 9 8 4 6
          输入查找的数:7
          输出:Not Found

Sample Input

2 9 8 4 6   
9 


Sample Output

1