public class HelloWorld
{
	int x = 0;
	public static void main(String[] args)
	{
		int x = 0;
		while (x < 10) {
		   System.out.println("Look, I can count to " + x + "!");
		   x++;
	   }
	}
}
