! CHECK: 30 program arithmetic implicit none integer :: a, b, c a = 10 b = 20 c = a + b print *, c end program