summaryrefslogtreecommitdiff
path: root/CPP/cpp_book/chap1/1_1.cpp~
blob: c7cc953a362ee9e643ab1608030bd4609d79e7e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <string>

int
main()
{
	std::cout << "Please enter your first name: ";

	std::string name;
	std::in >> name;

	std::cout << "Hello, " << name << ". Welcome!" << std::endl;

	return 0;
}