#include <iostream>
#include <string>

using namespace std;
    int main (){
    int I;
    long long LL;
    char ch ;
    float fo ;
    double db;
 cin >> I >> LL >> ch >> fo >> db ;
   
    cout << I << "\n"; 
    cout  << LL << "\n";
    cout << ch << "\n";
    cout << fo << "\n" ;
    cout << db <<"\n"; 


  return 0;
} 