#include<stdio.h>
int main()
{
float b,d,h,g;
printf("Enter the value of b:");
scanf("%f",&b);
d=(0.4)*b;
h=(0.2)*b;
g=(b+d+h);
printf("%f",g);
return 0;
}