silly hermpie. Leaving will solve nothing. If i were to tell you that 2 * 2 = 4? would you agree that thats the answer? Yes you would
, so in that case, your leaving make no sense, in the fact that
SCAR Code:
(l * e * a * v * i * n * g) <> (a * ' ' * g * o^2 * d * ' ' * c * h * o * i * c * e)
or if you cant comprehend that then this should work 
SCAR Code:
program New;
function GoodBad(Input, results: String): string;
begin
if (input <> 'leaving') and (input <> 'staying') then
begin
result := 'Wow you''re stupid';
exit;
end;
case input of
'leaving': begin
if results = 'good' then
result := 'You''re wronger than a porquepine in a can of beans'
else
if (results = 'bad') then
result := 'You''re right!'
else
result := 'nub';
end;
'staying': begin
if results = 'good' then
result := 'You''re right!'
else
if (results = 'bad') then
result := 'You''re wronger than a porquepine in a can of beans'
else
result := 'nub';
end;
end;
end;
begin
Writeln(GoodBad('leaving', 'bad'));
end.