print abs(gcd(-220,160)) function gcd(gcd,b) while b c = gcd gcd = b b = c mod b wend end function