poj 3062(水题)


#include
using namespace std;
int main(){
    char a[100];
    while(gets(a)){
        printf("%s\n",a);
    }
    return 0;
} 

相关