#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main()
{
	double a, b, c;

	a = 1.0;
	b = 3.141592;

	c = a + b;

	printf("%e, %e\n", c, cos(b));

	return EXIT_SUCCESS;
}

