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

int main(void) {

	std::string name;
	int a, b, c;
	while (std::cin >> name) {
		std::cin >> a >> b;
		std::cout << name << a << b << std::endl;
	}

	return 0;
}