#include <stdio.h> #include <iostream> #include <string> int main () { char c; for (;c=getchar()!='\n';) { printf ("%c\n",c);} return 0; }