#include <stdio.h> int main() { int v; for( ; scanf("%d",&v)==1 && v!=0; ) printf( "%d ", v ); printf( "\n" ); return 0; }