See More

public class Mutation { public boolean isPositive(int a) { if ((a >= 0) && (a < 101)) { return true; } return false; } }