var x:integer;beginread(x);if (x < 3) and not (x < 2) then write('TRUE') else write('FALSE');end.
1 -> FALSE
2 -> TRUE
3 -> FALSE
n - > FALSE
var x:integer;
begin
read(x);
if (x < 3) and not (x < 2) then write('TRUE') else write('FALSE');
end.
1 -> FALSE
2 -> TRUE
3 -> FALSE
n - > FALSE