Write a program that prints the first 5 odd numbers to the screen.

var i, a: integer;
begin
cls;
a: = 1; // Assign this value to the variable a, since 1 is the first odd number in a series of natural numbers.
for i: = 1 to 5 do // An additional begin / end construction is introduced, since there are two different operators in the loop.
begin
writeln (a);
a: = a + 2;
end;
end.



One of the components of a person's success in our time is receiving modern high-quality education, mastering the knowledge, skills and abilities necessary for life in society. A person today needs to study almost all his life, mastering everything new and new, acquiring the necessary professional qualities.