PROGRAMMING:Output alphabetic sequence 1
Write a program to achieve the following functions
Read a character cbegin and a number Icount from the keyboard, and output Icount characters ≤ cbegin.
###Input format:
Enter a character and an integer in turn
###Output format:
Output characters in turn without space separation between characters
###Input example:
```in
M 8
```
###Output example:
The corresponding output is given here. For example:
```out
MLKJIHGF
```
answer:If there is no answer, please comment
Read a character cbegin and a number Icount from the keyboard, and output Icount characters ≤ cbegin.
###Input format:
Enter a character and an integer in turn
###Output format:
Output characters in turn without space separation between characters
###Input example:
```in
M 8
```
###Output example:
The corresponding output is given here. For example:
```out
MLKJIHGF
```
answer:If there is no answer, please comment