import java.util.*;
public class Clear {
private Position position;
public Clear(Position position) {
this.position = position;
}
public boolean getClear() {
boolean temp_l1;
if((this.position.getPosition().getFirst()>100.0)) {
temp_l1 = true;
} else {
temp_l1 = false;
}
return temp_l1;
}
}