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

public class Main {

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