Bonjour,
TextWindow.WriteLine("a = ?")
a = TextWindow.Read()
TextWindow.WriteLine("b = ?")
b = TextWindow.Read()
somme = a + b
produit = a * b
quotient = a / b
soustraction = a - b
TextWindow.WriteLine(a + " + " + b + " = " + somme)
TextWindow.WriteLine(a + " x " + b + " = " + produit)
TextWindow.WriteLine(a + " / " + b + " = " + quotient)
TextWindow.WriteLine(a + " - " + b + " = " + soustraction)
Bonne journée.