// Créateur JCM
// boucle while
#include <stdio.h>
#include "asciiart.h"
int main(void)
{
	char c;
	int i=0;
	while (i!=10)
	{
		printf("\nTapez 10 caractères pour sortir.\n");
		c=getche();
		i++;
	}
	return(0);
}
