public class C {
	C(int i) {this.i = i;}
	void add1() {i++;}
	int get() {return i;}
	public String toString() {return i+"";}

	int i;
}
