TextWindow.ForegroundColor = "yellow" TextWindow.WriteLine("Bonjour. Saisir un nombre N1") TextWindow.ForegroundColor = "red" N1 = TextWindow.Read() TextWindow.ForegroundColor = "yellow" TextWindow.WriteLine("Saisir un nombre N2") TextWindow.ForegroundColor = "red" N2= TextWindow.Read() N=N1 + N2 TextWindow.ForegroundColor = "yellow" TextWindow.WriteLine("La somme des deux nombres saisis " + N1 + " + " + N2 + " = " + N)