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