If intA > intB then Wscript.echo "intA > intB" If intB < intA Then Wscript.echo "intB < intA" If intA = intA Then Wscript.echo "intA = intA" If intA >= intB Then Wscript.echo "intA >= intB" If intA <= intA Then Wscript.echo "intA <= intA" If intA <> intB Then Wscript.echo "intA <> intB"