Answer:
Here's a Python program that accomplishes the task:
v = [54, 80, 64, 90, 27, 88, 48, 66, 30, 11, 55, 45]
# Get user input
search_value = int(input("Search for: "))
# Search for value in list and print result
if search_value in v:
print(search_value, "was found at index", v.index(search_value))
else:
print("-1")
Step-by-step explanation:
Here's a sample output for when the user searches for the value 64:
Search for: 64
64 was found at index 2