#abc336a. A - Long Loong

A - Long Loong

Score: 100100 points

问题描述

对于一个正整数 XX龙字符串(Dragon String)的级别为 XX 是由一个 LXXo,一个 n 以及一个 g 以该顺序排列组成的长度为 (X+3)(X+3) 的字符串。

给定一个正整数 NN,请打印出级别为 NN 的龙字符串。 注意,区分大小写。

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

For a positive integer XX, the Dragon String of level XX is a string of length (X+3)(X+3) formed by one L, XX occurrences of o, one n, and one g arranged in this order.

You are given a positive integer NN. Print the Dragon String of level NN.
Note that uppercase and lowercase letters are distinguished.

Constraints

  • 1N20241 \leq N \leq 2024
  • NN is an integer.

Input

The input is given from Standard Input in the following format:

NN

Output

Print the Dragon String of level NN.

Sample Input 1

3

Sample Output 1

Looong

Arranging one L, three os, one n, and one g in this order yields Looong.

Sample Input 2

1

Sample Output 2

Long

update @ 2024/3/10 01:24:48