package task08;

public interface SomeInterface {
	
    int firstMethod(int x, int y);
	
    int secondMethod(boolean b, int x);
	
	void thirdMethod(int x, int y, boolean b);

}
