#include <iostream>

int main() {
    
static int num=1;
if(num++ <= 3)
{
    Cout << num << " ";
    main();
}
Cout << num << " ";
return 0;
}