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

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

int main() {

    student st;
    cin >> st.name >> st.age >> st.height;
    cout << st.name << ' ' << st.age <<' ' << st.height;

    return 0;
}