QuestionAccept a character C and a positive integer N as input. The program must print N characters starting from C.
Input Format:
The first line contains C and N separated by space(s).
Output Format:
The first line contains N characters.
Example Input/Output 1:
Input:
a 4
Output:
abcd
Example Input/Output 2:
Input:
z 5
Output:
zabcd
can someone tell me how to proceed in this question