program test implicit none integer :: f0 =0, f1 = 1, f integer :: i, n n = 20 print *, f0 print *, f1 do i = 3, n f = f0 + f1 f0 = f1 f1 = f print *, f end do end program test