#include <iostream>
#include <string>
using namespace std;

struct student {
    string name;
    int age;
    float height;
    // write your code here......
};

int main() {
    struct student stus;
    cin >>stus.name>>stus.age>>stus.height;
    cout <<stus.name<<" "<<stus.age<<" "<<stus.height;
    // write your code here......
    

    return 0;
}