program IfStatement; 
var
x: integer;
begin
	x := 10;
	if (x > 1) and (x < 12) then
		writeln('yeah')
	else
		writeln('nope');
end.