UVA Problem 1124 Solution

Problem Solving, UVa

 

 

#include <bits/stdc++.h>

int main()

{

    char s[105];

    while(gets(s))

    {

        printf("%s",s);

    }

    return 0;

}

 

0 Comments

You may find interest following article