#include<stdio.h> void prn(int num) { printf("%d\n",num); if(num>1) prn(--num); } int main() { prn(9); return 0; }