<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">public class cpoint extends point2 {
    int color=0;
    public void output() {
        super.output(1);
        System.out.print("c="+color+"\n");
    }
    public static void main(String[] args) {
        cpoint p = new cpoint();
        p.color=10;
        p.output();
    }
}
</pre></body></html>