// $Id: Counter.java,v 1.2 2002-07-08 00:53:52+09 kaiya Exp $ class Counter{ private int c=0; int val(){return c;} void set(int a){c=a;} }