public class WesternTown {   
    int stables;    
    int saloons;    
    int sheriffs;   
    int troublemakers;      
    int time;
    String location;        
                             
    public WesternTown() {    
        stables = 3;    
        location = "Western America";
        time = 1850;
    }

    public WesternTown(String place) {
        stables = 3;    
        location = place;
    }

}
