#include <stdio.h>

int main() {
  float n;
    scanf("%f",&n);

   
    printf("%.1f*%.1f*3.14=%.1f",n,n,n*n*3.14);
    
    
    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: