#abc264a. A - "atcoder".substr()

A - "atcoder".substr()

Score : 100100 points

问题描述

打印字符串 atcoder 的第 LL 个到第 RR 个字符。

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

Problem Statement

Print the LL-th through RR-th characters of the string atcoder.

Constraints

  • LL and RR are integers.
  • 1LR71 \le L \le R \le 7

Input

Input is given from Standard Input in the following format:

LL RR

Output

Print the answer.

Sample Input 1

3 6

Sample Output 1

code

The 33-rd through 66-th characters of atcoder are code.

Sample Input 2

4 4

Sample Output 2

o

Sample Input 3

1 7

Sample Output 3

atcoder

update @ 2024/3/10 11:08:43