<ADC = <BAD = 115
hope it helps
The value of 9 is 9,000 it’s in the Thousands place
The second line since it have marks on -1 and on 2
X+y<=20 is false, because it tries to correlate the amount of hats and scarfs with the time, without considering the time to knit each object
x<=5 is correct, he can at most make 5 hats for more he is missing yarn
y<=8 is correct, same reasoning but with scarfs
5x+8y<=20 is false, it compares the yarn requirements with the total time
12x+6y<=20 is correct, a corrected version of the first constraint which uses the worktime of each object essentially meaning "the time worked on all objects has to be less than the 20 hour time total"
so
x<=5
y<=8
12x+6y<=20
are correct