aboutsummaryrefslogtreecommitdiff
path: root/challenge-154/abigail/fortran/ch-2.f90
blob: e57ac31f39a6fe044d1717a2b9b600f02e6c0033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
!
! See https://theweeklychallenge.org/blog/perl-weekly-challenge-154
!

!
! Run as: gfortran -o ch-2.o ch-2.f90; ./ch-2.o
!

program ch2
    implicit none
    write (*, *) "2, 3, 5, 7, 37, 151, 3329, 23833, 13091204281, 3093215881333057"
end