*numb2.f
        Program Large
        Integer N, M

        N = 2147483647
        Print *,'The largest machine integer:', N
        M = N + 1
        Print *,'2147483647 + 1 =', M

        End

