#include<stdio.h>
int main()
{
   int l=5;
   int b=3;
   float r=8;
    printf("the area of the rectangle:",l*b);
    printf("the radius of the circle",r/2*3.14);
}