class Child { int c; Child(int c_) {c=c_;} void setC(int c_) {c=c_;} int getC() {return c;} }