summaryrefslogtreecommitdiff
path: root/CPP/cpp_book/chap1/1_1.cpp
blob: 7a6cd2c199e7e93f5e5423a4ff8ad36e12c413b2 (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::cin >> name;

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

	return 0;
}