#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <math.h>

int
main (void)
{
  /* Vous pouvez écrire votre code ici, après ce commentaire. */
  int a;
  printf ("Donnez-moi un entier: ");
  scanf ("%i", & a);
  printf ("Vous avez écrit ");
  printf ("%i\n", a);
  return EXIT_SUCCESS;
}
