#include <stdio.h> void main () { char ch; while(1) { ch=getch(); if(ch==27) break; if(ch==13) continue; putch(ch); } }