lst = ["google", "apple", "twitter", "facebook"]
i = 0
while i < len(lst):
print((i), "-", lst[i])
i += 1
output = int(input("> "))
if int(output) < len(lst):
print(lst[output])
else:
i > len(lst)
print("Элемента с таким индексом не существует.")