Your younger sibling needs help with their algebra homework, and it involves a full worksheet of detecting parallel lines in equations! Too inarticulate to explain how to find these parallel lines, you decide to create a piece of code that will solve the problems for them.
You will be given two lines of linear equations in $$$y=mx+b$$$ form. See the example input for the exact formatting. $$$m$$$ will always be written before the $$$x$$$ term, even if $$$m$$$ is equal to 1.
If the two linear equations are parallel, output "PARALLEL", otherwise output "NOT PARALLEL".
y=17x+12 y=2x+21
NOT PARALLEL
y=-8x+3 y=-8x+1
PARALLEL