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