3 lines
70 B
Python
3 lines
70 B
Python
l = list(map(int, input().split()))
|
|
n = int(input())
|
|
print(l.index(n)) |