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

int main() {
    long long a, b;
    float c;
    char d;
    string e;
    cin>>a>>b>>c>>d>>e;
    cout<<a<<endl<<b<<endl;
    cout<<fixed<<setprecision(1)<<c<<endl;
    cout<<d<<endl<<e<<endl;

    
}
// 64 位输出请用 printf("%lld")