#include<iostream> using namespace std; void afis(int n) { if(n>0) { afis(n/10); cout<<n%10<<" "; } } int main() { afis(2316); return 0; }