/**
 * Created by IntelliJ IDEA.
 * User: gloyaute
 * Date: 10 01 2011
 * Time: 19:12:53
 * To change this template use File | Settings | File Templates.
 */

public class ToString {

    public static void main(String[] args) {
        Point p = new Point(1, 2);
        System.out.println(p);
    }
}
