#This program is asks the user who the best Formula One driver is driver = input("Who is the best Formula One driver? ") #The program coments on the users input if driver == "Lewis": print("Great choice!!!") else: print("Do some more research, buddy!") #The program has reached its end print("The program has ended")