package com.java1.day18; class Shape { protected int x, y; } interface Drawable { void draw(); } public class Rectangle extends Shape implements Drawable{ int width, height; public void draw() { System.out.println("Rectangle Draw"); } }