def main(): n = int(input()) s = "Hello! You're new here, right? It's nice to meet you.\n" print(s * n) if __name__ == "__main__": main()