public class Computer {
    protected String product;
    protected int price;
    
    public Computer(String p, int price) {
        product = p;
        this.price = price;
    }
    
    public int getPrice() {
        return price;
    }
    
    public void print() {
        System.out.println("Computer-" + product + ": " + getPrice());
    }
}
