102820: [AtCoder]ABC282 A - Generalized ABC

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:3 Solved:0

Description

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:

$K$

Output

Print the answer.


Sample Input 1

3

Sample Output 1

ABC

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

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


Sample Input 2

1

Sample Output 2

A

Input

题意翻译

给定一个整数 $k$,保证 $1 \leq k \leq 26$。 请你输出从 `A` 开始的按升序排列的前 $k$ 个大写英文字母组成的字符串。

Output

分数:100分

问题描述

给你一个整数 $K$。

打印一个字符串,它是从 A 开始按升序排列的前 $K$ 个大写英文字母的串联。

限制条件

  • $K$ 是一个介于 $1$ 和 $26$ 之间的整数,包括 $1$ 和 $26$。

输入

输入是从标准输入按以下格式给出的:

$K$

输出

打印答案。


样例输入1

3

样例输出1

ABC

按升序排列的大写英文字母是 ABC,...

将前三个大写英文字母串联起来,我们得到 ABC


样例输入2

1

样例输出2

A

加入题单

算法标签: