import java.awt.Color;
public class BugTest
{
public static void main(String[] args)
{
Bug frank = new Bug();
Bug mary = new Bug(Color.BLUE);
Location newLocation = Location(30, 40);
mary.moveTo(newLocation);
System.out.println(mary.getLocation());
System.out.println(frank.getLocation());
}
}