function Main(input) {
    let n = input;
    // inputにはすべての入力の文字列が与えられるので必要に応じて input.split("\n") などで分割する。
    // i = 0;
    // i > n = 0 > '10' -> false
    for(let i = 0; i < n; i++){
    console.log("Hello! You're new here, right? It's nice to meet you.");
    }
}

// Don't edit this line!
Main(require('fs').readFileSync('/dev/stdin', 'utf8'));