 import kareltherobot.*;
class new_robot extends ur_Robot{
	
	public new_robot(int st,int av, Directions.Direction dir, int beeps) {
		super(st,av,dir,beeps);
	}
	
	public void moveMile(){
		move();
		move();
		move();
		move();
		move();
		move();
		move();
		move();
	}
	
	public void moveBackwards(){
		turnLeft(); 
		turnLeft();
		move();
		turnLeft();
		turnLeft();
	}
	

	
	public void turnRight() {
		turnLeft();
		turnLeft();
		turnLeft();
	}
	
	public void setuppins(int howmany)
	{
		int temp=0;
		while(temp<howmany){
			move();
			putBeeper();
			move();
			temp++;
		}
		
	
		
	
}
}