#include void myst(int N) { if (N > 0) myst(N - 1); print(N); if (N > 0) myst(N - 1); } void main() { myst(5); }