Σύνθετες επιλογές

Παράδειγμα:
if i < 10 then
	writeln('Number too small')
else if i > 1000 then
	writeln('Number too large')
else
	writeln(i)