Code:
#include <iostream>

using namespace std;

int main()
{
	string user_input;
	string computer_output;
	int x;
	int b;
	int cin;
	
	cout<<"Hey people I am a program"<<endl;
	cout<<"named Blubster! You can talk to me like a normal person"<<endl;
	cout<<"and I will reply!"<<endl;
	
	while ( x != 1 ){
	
	  getline (cin, user_input, '/n');
	  cout<<user_input;
	  
	  if ( user_input == "end" );
	  {
		   x = 1;
	  
	  }
	cout<<"Goodbye!";
	cin.get();
}
This doesnt want to work pls help!