#include <stack>
#include <iostream>
using namespace std;
void fun(int x){
stack<int> st;
st.push(x);
while(!st.empty()){
int t = st.top();
st.pop();
if(t < 10)
cout << t * 10 + t;
else{
int a = t / 10,b = t % 10;
st.push(b);
st.push(a);
}
}
}
int main(){
fun(1234);
}