#include <stdio.h>
#include<math.h>
int main(){
    int a,b,c;
    scanf("%d",&a);
    b=sqrt(3)/4;
    c=a*a;
    printf("area:%.2f",b*c);
}