C Reads two numbers and then displays their average. C Created: Joe Zachary, September 17, 1992 C Modified: PROGRAM AVERGE PRINT *, 'Please enter two numbers separated by a comma: ' READ *, X, Y AVE = (X + Y) / 2 PRINT *, 'The average is ', AVE STOP END