/*
  Copyright (c) October 2010 by Paweł Rzechonek
  Prosty program, który wypisuje hasło powitalne na standardowym wyjściu.
  Istotne elementy w programie:
    * publiczna statyczna metoda main(String[]).
*/

public class PierwszyProgram
{
    public static void main (String[] args)
    {
        System.out.println("Witaj na Javie!");
    }
}

