#include "library.h" void d(const int N) { print(N % 10); print(" "); if (N > 9) d(N / 10); } void main() { d(7382895); }