public class Foothill
{
public static void main(String[] args)
{
Client person_1 = new Client("Bruce Ruprecht", 16000, 10);
Writer writer_1 = new Writer("Adam Buff", 0, 0, false, true, true,"producer");
Actor actor_1 = new Actor("Anthony Boss", 2500, 25, 'M', 28);
// sample runs
person_1.Display();
writer_1.Display();
actor_1.Display();
System.out.println(person_1.ToShow() + writer_1.ToShow()
+ actor_1.ToShow());
}
}