Skip to content

Instantly share code, notes, and snippets.

@drushman
Created May 23, 2017 03:08
Show Gist options
  • Save drushman/7581e6a66e7fa29233b8919138b676bd to your computer and use it in GitHub Desktop.
Save drushman/7581e6a66e7fa29233b8919138b676bd to your computer and use it in GitHub Desktop.
program ageofuser(input,output);
var
i:integer;
n:integer;
begin
writeln('Please type n');
readln(n);
i := 1;
while i < n do
begin
i := i * 2;
writeln(i);
end;
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment