#include <iostream>
#include <iomanip>
using namespace std;
long long a , b;
float c;
char d;
string e;
int main() {
    cin >> a >> b >> c >> d >> e;
    cout << a << endl;
    cout << b << endl;
    cout << fixed << setprecision(1) << c << endl;
    cout << d << endl;
    cout << e << endl;
    return 0;
}