subroutine add_print(a, b) implicit none real, intent(in) :: a, b print *, a + b end subroutine