#include<stdio.h>
int main()
{
   int l=5;
   int b=3;
   float r=2.0;
    printf("\n%d",l*b);
    printf("\n%f%f",r*6.285);
}