#include<bits/stdc++.h>
#include <iostream>
using namespace std;

int main() {
    int a;
    long long b;
    double c;
    char d;
    string e;
    cin>>a>>b>>c>>d>>e;
    cout<<a<<'\n'<<b<<'\n'<<fixed<<setprecision(1)<<c<<'\n'<<d<<'\n'<<e;
    return 0;
}
// 64 位输出请用 printf("%lld");