function a = monus(x, y)
    if y > x
        a = 0;
    else
        a = x - y;
    end
end