//Class:  Phy409
//Sample Program
//

#include <stdlib.h>
#include <stdio.h>
#include <math.h>

int main ()
{

	float x, y, z;
	int i;

        printf("Input two numbers \n");
        scanf("%f %f",&x,&y);
        z=x+y;
	printf("The sum of %15.10f and %15.10f is %15.10f \n",x,y,z);
        return(0);
}

