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

var
  n: shortint;

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