class Point{
private int x;
private int y;
public Point(int x, int y){
this.x = x;
this.y = y;
}
}
se va afisa
1: class Point{
2: private int x;
3: private int y;
4:
5: public Point(int x, int y){
6: this.x = x;
7: this.y = y;
8: }
9: }