public
class Main
{
   public static void main (String args[])
   {
      KolorowyPunkt punkt = new KolorowyPunkt(100, 200, 10);
      System.out.println ("wsprzdna x = " + punkt.pobierzX());
      System.out.println ("wsprzdna y = " + punkt.pobierzY());
      System.out.println ("kolor = " + punkt.pobierzKolor());
   }
}

