import java.util.Scanner; import java.lang.String; class newf { public static void multiple(String str, int times) { String result; result = " "; for (int i = 0; i < times; i++) result = result + " "+ str; return result; } public static void main(String[] args) { Scanner scr = new Scanner(System.in); int a = scr.nextInt(); multiple(" Привет ", a); } }