package com.example.a;

public class Shape {

	protected int width;
	int height;
	
	public void getWidth() {
		System.out.println("width: " + width);
	}
	
	public void getHeight() {
		System.out.println("height: " + height);
	}
}
