Thursday, January 28, 2016

UVA 1124 - Celebrity jeopardy Solve

#include<iostream>
#include<string>

using namespace std;

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

Problem link: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=3565

No comments:

Post a Comment

Thank you for commenting. Please wait for response :)