#include void intervalo(int n, int m) { if (n <= m) { printf ("%d ", n); intervalo(n+1, m); } } int main() { intervalo(1, 6); return 0; }