16 lines
294 B
C++
16 lines
294 B
C++
#include<iostream>
|
|
#include<string>
|
|
|
|
int main()
|
|
{
|
|
std::cout<<"What is your name? ";
|
|
std::string name;
|
|
std::cin>>name;
|
|
std::cout<<"Hello, "<<name
|
|
<<std::endl<<"And what is yours? ";
|
|
std::cin>>name;
|
|
std::cout<<"Hello, "<<name
|
|
<<"; nice to meet you too!"<<std::endl;
|
|
return 0;
|
|
}
|