#include <stdio.h>
/*Copy input to output; KNR C exercise 1-6*/
int main(){
int c;
while ((c = getchar() != EOF))
putchar (c);
return 1;
}