import java.applet.*; import java.awt.*; public class Ex1Template extends Applet { // put the declaration for the Car and Boat here /** * Any drawing is done here. It is where you should move, change sizes and colours * and make visible your Car and Boat. */ public void paint(Graphics g) { } }