public
class Punkt
{
   int x, y;
   int getX(){
      return x;
   };
   int getY(){
      return y;
   }
}
