#include <iostream>

int main(int argc, char const *argv[]) {
  int n;
  std::cin >> n;
  for (size_t i = 0; i < n; i++) {
    std::cout << "Hello! You're new here, right? It's nice to meet you." << '\n';
  }
  return 0;
}