Make a program that determines which letter begins the second word in a sentence.

// – A comment mark, it will not compile.

program findtheletter; // The name of the program
var
i: integer; // Declare an integer variable
str: string; // Declare a string variable
begin
readln (str); // Read a line from the console
i: = pos (”, str); // Look for the position of the first space
println (str [i + 1]); // Print the value of the next character after the first space
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.