class gethousehold{
void setOccupants(){
}
void setIncome(){
}
public int getIncome(){
return 0;
}
public int getOccupants(){
return 1;
}
}
class Household{
public static void main(String args[]){
gethousehold hh=new gethousehold();
System.out.println("Occupants :"+hh.getOccupants);
}
}