import java.util.Scanner; public class A_FreshmanProgrammingMackerel { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String welcome = "Hello! You're new here, right? It's nice to meet you.\n"; System.out.print(welcome.repeat(N)); } }