#AT2413. A - Generalized ABC

A - Generalized ABC

当前没有测试数据。

A - Generalized ABC

Score : $100$ points

Problem Statement

You are given an integer $K$.

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

Constraints

  • $K$ is an integer between $1$ and $26$, 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