David W. answered 01/02/20
Experienced Prof
You may either plot the inequalities and determine that a domain and range from 0 to 5 is sufficient or you may use trial-and-error values, -100 to 100.
FOR x = -100 TO 100
FOR y = -100 TO 100
IF ( y > (x/10 + 1/10) AND ( y < (5-0.99*x) ) AND ( y < (-1+1.1*x) ) ) THEN OUTPUT x,y
NEXT y
NEXT x
2 1
3 1
3 2
4 1
Don't be a;alarmed -- this program ran for one second.
Someday soon, computers (even on smart phones) will be like calculators and exhaustive enumeration (considering every possibility) will be an acceptable mathematics solution !