#include<bits/stdc++.h>
using namespace std;
struct student{
string name,gender;
int age;
double weight;
};
int main(){
student a;
cin>>a.name>>a.gender>>a.age>>a.weight;
cout<<a.name<<" "<<a.gender<<" "<<a.age<<" ";
printf("%.2lf",a.weight);
return 0;
}