Answer:
Please find the code and its output in the attached file.
Step-by-step explanation:
In the above-given code, an interface "Runner" is defined, inside the interface, an abstract method run is declared.
In the next step, three class "Athlete, Machine, and PoliticalCandidate" s defined that implements the run method, and use the print message that holds a given value as a message.
In the next step, a class "DemoRunners" is defined, and inside the main method, the three-class object is declared, which calls the run method.