package task09;

public abstract class SomeAbstractClass {

    abstract int firstMethod(int x, int y);
	
    abstract int secondMethod(boolean b, int x);
    
    public boolean thirdMethod(boolean b, int x) {
    	return b && x > 100;
    }
	
    abstract void fourthMethod(int x, int y, boolean b);
    
    int fifthMethod(int x) {
    	return x * x * x;
    }

}
