Solution to the problem number 460 of AceptaelReto - 460.

Any questions do not hesitate to contact.

#include <bits/stdc++.h>
using namespace std;

int main()
{
    string n;
    while(getline(cin,n))
    {
        for(unsigned int i=0; i<n.length();i++) if(i!=n.length()-1) cout<<n[i]<<"0"; else cout<<n[i];
        cout<<'\n';
    }
    return 0;
}

Don't miss anything.

Keep in touch with Isaac Lozano Osorio!