// Créateur JCM
// boucle while
#include <stdio.h>
int main(void)
{
	char c;
	int i=0;
	while (i!=10)
	{
		printf("\nIl vous reste à taper encore %d chiffre(s) premier(s).\n",10-i);
		scanf("%d",&c);
		if ((c==1) || (c==3) || (c==5) || (c==7))
		{
			i++;
		}
	}
	return(0);
}
