#include<stdio.h>
int main()
{
   int l=5;
   int b=3;
   double r=2.0;
    printf("\nthe area of the rectangle:%d",l*b);
    printf("\nthe radius of the circle:%f",r**r);
}