public class Main { public static void main(String[] args) { Cat Tom = new Cat("Tom"); Mouse Jerry = new Mouse("Jerry"); Tom.chase(Jerry); } }