	#include <iostream>
	#include <string.h>
	#include<stdio.h>
	#include<fstream>
	using namespace std;


    using namespace std;


    void PL() {
       string line;

		while(cin) {
			cout<<"Type line now";
			if(std::getline(cin,line)) {
				// supposed to Parsing string into words and translate// 
				//but just reading back input for now//
				cout<<"You typed:"<<line<<endl;
			}
		}
    }

    int main() {
		PL();
	}