#include <stdio.h>

int main(void) { float a,b,c;
scanf("%f%f",&a,&b);
c=a+b;
printf("print the number of sum=%f",c);
	// your code goes here
	return 0;
}
