int main() { double c = 3.14159; double R; scanf(“%lf”, &R); double A = c * R * R; printf(“A=%.4lf”, A); return 0; }