#include "stdio.h" #include "math.h" void main() { int r=5,d=10; float n=3.14,C=0,S=0; C=n*d,S=n*r*r; printf("%f,%f",C,S); }