_ = dynexite.random
#Hilfsvariable
condition = 0
#Es werden solange neue Werte bestimmt, bis die Bedingung a-b ungleich 0 erfüllt ist
while not condition:
a = _(1,10)
b = _(1,10)
c = _(20,30)
if (a-b) != 0:
condition = 1
Antwort = c/(a-b)