UVA 1124 - Celebrity jeopardy

Problem PDF

Solution:

#include 
int main()
{
char a[100];
while(gets(a))
puts(a);
return 0;
}
https://github.com/Shipu/OnlineJudgeProblemSolutionWithCPlusPlus/tree/master/uva/1124/1124.cpp