#ABC282A. [ABC282A] Generalized ABC

[ABC282A] Generalized ABC

Score : 100100 points

Problem Statement

You are given an integer KK.

Print a string that is a concatenation of the first KK uppercase English letters in ascending order, starting from A.

Constraints

  • KK is an integer between 11 and 2626, inclusive.

Input

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

KK

Output

Print the answer.

3
ABC

The uppercase English letters in ascending order are A, B, C, ...

By concatenating the first three uppercase English letters, we get ABC.

1
A