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

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

program ch2
    implicit none
    write (*, *) "2 1 5"
    write (*, *) "5 2 13"
    write (*, *) "8 3 21"
    write (*, *) "17 18 5"
    write (*, *) "11 4 29"
end