
public interface Partition {
	int size();
	int classNumber();
    int find(int x) ;
    void union(int x, int y);
}
