SLIDE 16 Sketch the initial state and final state of this program
import becker.robots.*; public class GoAroundRoadBlock p { public static void main(String[] args) { //set up initial situation City ny = new City(); Wall blockAve0 = new Wall(ny, 0, 2, Direction.WEST); ll bl k 1 ll( 1 2 i i ) Wall blockAve1 = new Wall(ny, 1, 2, Direction.WEST); Robot mark = new Robot(ny, 0, 2, Direction.WEST); Robot ann = new Robot(ny, 0, 1, Direction.EAST); //what does mark do here? mark turnLeft(); mark.turnLeft(); mark.move(); mark.move(); mark.turnLeft(); mark.turnLeft(); mark.turnLeft(); mark.move(); //what does ann do here? ann.turnLeft(); ann.turnLeft(); t L ft() ann.turnLeft(); ann.move(); ann.move(); ann.turnLeft(); } }