import java.util.Scanner;

public class SimpleDoWhile {
	public static void main(String[] args) {
		int userValue;
		Scanner sc = new Scanner(System.in);
		do {
			System.out.print(
					"Enter an odd number to continue: ");
			userValue = sc.nextInt();
		} while ((userValue%2)==0);
		System.out.println("Thank you.");
	}
}

//Copyright 2010-2012 : Evan Golub 

