Pages

Sunday 9 September 2012

UVA - 1124 - Celebrity jeopardy

#include <stdio.h>

int main()
{
    char c[10];
    while(gets(c)){
        puts(c);
    }
    return 0;
}

No comments:

Post a Comment