#include <iostream>
#include <string>
using namespace std;
struct student {
// write your code here......
char name[20];
int age;
double height;
};
int main() {
// write your code here......
struct student stu;
cin>>stu.name>>stu.age>>stu.height;
cout<<stu.name<<" "<<stu.age<<" "<<stu.height;
return 0;
}