import java.util.Vector;

public class Polygone{

	Point[] sommets;
	
	public Polygone(Point... points){
		this.sommets = points;
	}


	public String toString(){
		String res="";
		for(Point s : sommets){
			res+=s.toString();
		}
		return res;
	}
	

}