public class HelloSpin {
    public static void main(String[] args) throws Exception {
	while (true) {
	    System.out.println("Spinning...");
	    Thread.sleep(1000);
	}
    }
}
