class starter { public static void main(String args[]) { String adj; String noun; EasyReader console = new EasyReader(); System.out.println("Enter the first adjective"); adj = console.readLine(); System.out.println("Now enter a noun"); noun = console.readLine(); System.out.println("The " + adj + "cat ate a " + noun); } }
The error says that it cannot find the symbol for easyreader but i dont know what that means