#include <iostream>
#include <string>

int main(){
	std::string userInput;
	
	std::cout << "Using std::getline(std::cin,userInput) on input \"bla bla\"." << std::endl;
	std::getline(std::cin,userInput);
	std::cout << "userInput contains \"" << userInput << "\"" << std::endl;
	
	std::cout << "std::cin >> userInput on input \"bla bla\"." << std::endl;
	std::cin >> userInput;
	std::cout << "userInput contains \"" << userInput << "\"" << std::endl;
	return 0;
}
