import java.util.Random;

class Ideone {
	public static void main (String[] args) {
		Random rnd = new Random(22317321631415L);
		for (int i = 1; i <= 14; i++)
			System.out.printf("%2d: %d%n", i, rnd.nextInt(10));
	}
}