Answer:
The if statement is as follows:
if speed>=24 and speed <=56 then
print "speed is normal"
else
print "speed is abnormal"
See attachment for flowchart
Explanation:
The condition is straight forward and self-explanatory
This is executed if speed is between 24-56 (inclusive)
if speed>=24 and speed <=56 then
print "speed is normal"
If otherwise, this is executed
else
print "speed is abnormal"