#include <stdio.h>

int main(void){
	int n;
	
	printf("Please enter the number of characters: ");
	scanf("%d", &n);
}