class IfElseStatement{
	Integer method(Boolean flag){
		if(flag){
			return 0;
		}else{
			return 1;
		}
	}
}