#include<stdio.h> int main() { int i = 0,n; while((n=getchar())!=EOF) { if(n == ' ') i++; else i=0; if(i <= 1) { putchar(n); } } return 0; }