// Arup Guha
// 10/28/2017
// Solution to Junior Knights Loop Practice Program: Copy Machine

import java.util.*;

public class copy {
	
	public static void main(String[] args) {
		
		// Get the # of times to repeat.
		Scanner stdin = new Scanner(System.in);
		System.out.println("How many times do you want the message printed?");
		int n = stdin.nextInt();
		
		// Ta da!
		for (int i=0; i<n; i++)
			System.out.println("Go Knights!");
	}
}