#include<stdio.h> void main() { char c; c=getchar(); while(c==''||c=='\t'||c=='\n') c=getchar(); putchar(c); }