#!/usr/bin/python3
def find_vowels(text, greek=False):
	vowels = "aeiouAEIOU" if not greek else "αεηιουωΑΕΗΙΟΥΩ"
	return [char for char in text if char in vowels]
def main():
	txt = input("Δώσε αλφαριθμητικό: ")
	choice = input("Ελληνικά φωνήεντα; (ν/ο): ").strip().lower()
	greek = choice == 'ν'
	result = find_vowels(txt, greek)
	print("Φωνήεντα που βρέθηκαν:", result)
if __name__=="__main__":
	main()
