package com.example.test;

import com.example.a.Shape;

public class TestShape {

	public static void main(String[] args) {
		Shape s = new Shape();
		System.out.println(s.width);
		s.getWidth();
	}

}
