the result of the code below is : 3877337276612781506 but i tried online Fibonacci calculator and got huge number of more than 1000 decimals
in such numbers how can i got the Fibonacci result?
Long fnOfZero = 0L, fnOfOne = 1L, n, i, count = 8182L;
for (i = 2L; i < count; ++i){
n = fnOfZero + fnOfOne;
System.out.print(i + ": ");
System.out.println(n));
fnOfZero = fnOfOne;
fnOfOne = n;
}