write a script where if a input value is higher than 600 the result is "elongation exceed the range". if it is below 500 show "the result is below the range" in matlab
value = input("Enter a value: ");
if value > 600
disp("Elongation exceed the range");
elseif value < 500
disp("The result is below the range");
end