Here is our example answer. Don't forget that if yours is not exactly the same it's not necessarily wrong.
Uses Crt;
var
   Clrscr;;
end.
Program Input_Number;          {Don't forget that this line is not needed}
In programming the same thing can be done many different ways, so don't worry if your program is different from ours as long as it works fine.
   num : Integer;
begin
   Writeln('Enter an Integer');
   Readln(num);
   Writeln('The Integer you entered was: ',num);
   Readln;;                      {Wait for the user to press enter}
However if you found this task hard or didn't understand, you might want to reread some of the previous lessons and try this task again later.