class Num extends Klip{
    int i;
    Num(int i){this.i = i;}
    void welcome(Visitor v){
	v.visit(this);
    }
}
