In: Computer Science
//Assuming to be done in c++ do comment if any other language needed
// do comment if any problem arises
//code
#include <iostream>
#include <string>
using namespace std;
int main()
{
//3 variables
string user_name,password,address;
//read user name
cout<<"Enter User's name: ";
getline(cin,user_name);
//read user password
cout<<"Enter User's password: ";
getline(cin,password);
//read user address
cout<<"Enter User's address: ";
getline(cin,address);
cout << "Hi, I am "<<user_name<<". I live at "<<address<<".";
}
Output: