import pyttsx3
tts=pyttsx3.init()

for i in range(10):
	if( i==4 ):
		continue;
	tts.say(str(i))

tts.runAndWait()

