#include "library.h" void abc(const int N) { if (N <= 0) { } else { print(N); abc(N-1); print(N); } } void main() { abc(8); }