var a: real;
begin
readln(a);
if a=1 then
writeln('январь');
else if a=2 then
writeln('февраль');
else if a=3 then
writeln('март');
else if a=4 then
writeln('апрель');
else if a=5 then
writeln('май');
else if a=6 then
writeln('июнь');
else if a=7 then
writeln('июль');
else if a=8 then
writeln('август');
else if a=9 then
writeln('сентябрь');
else if a=10 then
writeln('октябрь');
else if a=11 then
writeln('ноябрь');
else if a=12 then
writeln('декабрь');
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var a: real;
begin
readln(a);
if a=1 then
writeln('январь');
else if a=2 then
writeln('февраль');
else if a=3 then
writeln('март');
else if a=4 then
writeln('апрель');
else if a=5 then
writeln('май');
else if a=6 then
writeln('июнь');
else if a=7 then
writeln('июль');
else if a=8 then
writeln('август');
else if a=9 then
writeln('сентябрь');
else if a=10 then
writeln('октябрь');
else if a=11 then
writeln('ноябрь');
else if a=12 then
writeln('декабрь');
end.