<코드>

#include <stdio.h>

int main()
{
	double x, y;
	
	fscanf(stdin, "%lf %lf", &x, &y);
	
	fprintf(stdout, "%.2f %.2f %.2f", x, y, x+y);
	
	return 0;
}

+ Recent posts