#include <iostream>
#include <sstream>
using namespace std;

int main() {


    std::string line("Imagine this was from a file");
 //   std::getline(infile, line);


    std::stringstream strstr(line);

    string word;
    strstr >> word;
    cout << word << '\n';
    strstr >> word;
    cout << word << '\n';
	return 0;
}