program bugfixed !this program works real :: a,b,c print *,'enter two numbers and I will add them together' read *,b,c a = b + c print *,'the sum is',a end program bugfixed