do
cls
input "introduce valor del primer numero", X
input "introduce valor del segundo numero", Y
input "introduce valor del tercer numero", Z
if X<Y and Y<Z then
print "el número central es: "+ Y
end if
if Y<X and X<Z then
print "el número central es: "+ X
end if
if X<Z and Z<Y then
print "el número central es: "+ Z
end if
input "¿quieres repetir?", x$
until x$="no" or x$="NO"
print "fin del programa"