#include<stdio.h>
typedef struct Student {
char Name;
int Age;
double Score;
}Student;
int main()
{
int n;
Student Students[100];
scanf("%d", &n);
Student* Pstu = Students;
for (int i = 0; i < n; i++) {
char N;
int A;
double S;
scanf("%s %d %lf", &N, &A, &S);
*(Pstu + i) = { N, A, S };
}
for (int i = 0; i < n; i++) {
printf("%s %d %.2f\n", (Pstu+i)->Name,(Pstu+i)->Age,(Pstu+i)->Score);
}
return 0;
}
typedef struct Student {
char Name;
int Age;
double Score;
}Student;
int main()
{
int n;
Student Students[100];
scanf("%d", &n);
Student* Pstu = Students;
for (int i = 0; i < n; i++) {
char N;
int A;
double S;
scanf("%s %d %lf", &N, &A, &S);
*(Pstu + i) = { N, A, S };
}
for (int i = 0; i < n; i++) {
printf("%s %d %.2f\n", (Pstu+i)->Name,(Pstu+i)->Age,(Pstu+i)->Score);
}
return 0;
}