#include<stdlib.h>
#include<stdio.h>
double calc(double a,double b,double c)
{
return a*0.3+b*0.3+c*0.4;
}
struct stim
{
char name[20];
char number[15];
double middle;
double end;
double general;
double total;
};
int main()
{
int i,j,k,r;
int n;
scanf("%d",&n);
struct stim student[n+1];
for(i=1;i<=n;i++)
{
scanf("%s %s %lf %lf %lf",&student[i].name,&student[i].number,&student[i].middle,&student[i].end,&student[i].general);
student[i].total=calc(student[i].middle,student[i].end,student[i].general);
}
do
{
r=0;
for(j=1;j<=n;j++)
{
k=j+1;
if(student[j].total<student[k].total)
{
r++;
student[0]=student[k];
student[k]=student[j];
student[j]=student[0];
}
}
}while(r!=0);
for(i=1;i<=n;i++)
{
printf("%s %s %.2lf %.2lf %.2lf %.2lf\n",student[i].name,student[i].number,student[i].middle,student[i].end,student[i].general,student[i].total);
}
system("pause");
return 0;
}