Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
read
readln
write('Enter your first name: ');
read(s);
writeln('Your first name is: "',s,'"');
write('Enter your last name: ');
read(s); {This read is "skipped"}
writeln('Your last name is: "',s,'"');
readln
Read