void afis(){
int x;
cin >> x;
if(x) afis();
cout << x << " ";
}
#include <iostream>
using namespace std;
int main(){
afis();