10b main() { int key; while((char)key != 27) { key = getch(); putch(key); if((char)key == 13){ putch(10); if(wherey() == 25) clreol(); } } } . 0