Var
month:integer;
begin
write('Введите номер месяца: ');
readln(month);
if month = 12 or month = 1 or month = 2 then
writeln('Зима');
if month >= 3 and month =<5 then <br>writeln('Весна');
if month >= 6 and month =<8 then <br>writeln('Лето');
if month >= 9 and month =<11 then <br>writeln('Осень');
end.