package tomek.agh.po;

public class Loop {

    public static void main( String[] args ) {

		System.out.println("Hello!!!!\n");

		int x;

		for (x=0; x<10; x++)
			System.out.println("Hello again: "+x);

		while (x-->0)							// Please consider in detail what values are printed and why.
			System.out.println("x = "+x);
    }
}