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;
}

No comments:

Post a Comment