const float PI = 3.14; const float E = 2.718; int main() { float r = 5.0; float area = PI * r * r; float sum = PI + E; return 0; }