#include #include #include 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; }