#include int main(void){ int ch; while((ch = getchar()) == ' ') continue; while (getchar() != '\n') continue; printf("%c",ch); return 0; }