#include <stdio.h> /* for input/output */

main() {
  float floatVariable1, floatVariable2;
  printf("Lab Session 2, Question 2.3\n"); /* Display program header */
  printf("Enter two floating point numbers separated by a space: ");
  scanf("%f %f", &floatVariable1, &floatVariable2); /* Get the numbers from the user */
  printf("result: %f+%f=%f\n", 
         floatVariable1, 
         floatVariable2, 
         floatVariable1+floatVariable2); /* Add numbers together and print the result */
}

/* OUTPUT:
Lab Session 2, Question 2.3
Enter two floating point numbers separated by a space: 3.2e-1 1e-2
result: 0.320000+0.010000=0.330000
 */
