#include <stdio.h> int main() { float a, b; print("지름"); scanf("%f", &a); b = a / 2 * a / 2 * 3.14; printf("원의 넓이 %f", b); return 0; }