Showing posts with label UVa 1124 - Celebrity jeopardy. Show all posts
Showing posts with label UVa 1124 - Celebrity jeopardy. Show all posts

Monday, December 5, 2016

UVa 1124 - Celebrity jeopardy

// UVa 1124 - Celebrity jeopardy

#include <iostream>
#include <string>
using namespace std;

int main() {
	string line;
	while (getline(cin, line))
		cout << line << endl;
	return 0;
}