Problem2102--元素的位置

2102: 元素的位置

Time Limit: 1.000 Sec  Memory Limit: 128 MB
Submit: 45  Solved: 20
[Submit] [Status] [Web Board] [Creator:]

Description

  输入n(n<=1000),然后再输入n个正整数,最后输入x,请你在n个数中查找元素x,输出x所在位置(即第几个数)。

Input

包括三行 , 第一行有一个整数n;第二行有n个整数;第三行有一个整数x,为要查找的数。

Output

输出x是第几个数

Sample Input

5
70 30 20 60 50 
30

Sample Output

2

Source/Category

mc 

[Submit] [Status]