def main():
    # Initialize file (hidden in Unit Test #1)
    # Display header and menu
    print("********************************")
    print("AutoCountry Vehicle Finder v0.4")
    print("********************************")
    print("\nPlease Enter the following number below from the following menu:")
    print("1. PRINT all Authorized Vehicles")
    print("2. SEARCH for Authorized Vehicle")
    print("3. ADD Authorized Vehicle")
    print("4. DELETE Authorized Vehicle")
    print("5. Exit")
    print("********************************")

if __name__ == "__main__":
    main()# your code goes here