#include <stdio.h>

void imprime (int numero) {
  printf ("Número %d\n", numero);
}

int main () {
  imprime (10);
  imprime (20);

  return 0;
}