about summary refs log tree commit diff
path: root/others/volume1/013.pas
blob: 4884a200a3e28710a2f27b7eb63909cef92c7927 (plain) (blame)
1
2
3
4
5
6
7
8
9
uses fibonacci;

var
  n: shortint;

begin
  readln(n);
  writeln(fibonacci93[n + 1])
end.