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

var
  n: shortint;

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