master
RatioInt
func RatioInt(x1, y1, x2, y2 int) (int, int) { if x2 > 0 && y2 > 0 { return x2, y2 } else if x2 <= 0 && y2 <= 0 { return x1, y1