#include<iostream>
using namespace std;

int main()
{
	string name, address1, address2;
	
	cout<<"Enter your name: ";
	getline(cin,name);
	cout<<"Enter the address 1 of your house: ";
	getline(cin,address1);
	cout<<"Enter the address 2 of your house: ";
	getline(cin,address2);
	
	cout<<name<<endl<<address1<<endl<<address2<<endl;
	
	return 0;
}
