Tuesday 25 November 2014

UVA 1124 Celebrity jeopardy Solution (POJ 3062, ZOJ 3124, UVALive 2681, Regionals 2006 >> Europe - Southeastern)

#include<bits/stdc++.h>
using namespace std;

#define SET(a) memset(a,-1,sizeof(a))
#define CLR(a) memset(a,0,sizeof(a))
#define PI acos(-1.0)

#define MOD 1000000007
#define MX 100010


int main()
{
    //ios_base::sync_with_stdio(0);cin.tie(0);
    int n;
    string s;
    while(getline(cin, s))
    {
        cout<<s<<"\n";
    }
return 0;
}

No comments:

Post a Comment