#32334: _666


yp11151151@yphs.tp.edu.tw (908-37陳祈佑)


#include<iostream>
using namespace std;
int main(){
    long long n;
    cin>>n;
    while(n!=0){
    cout<<n<<endl;
    n=n/10;
    }
    }