// typedef 

#include <stdio.h>

int main() {
  typedef int entier;

  entier i = 10;
  printf("i= %d\n", i);
  return (0);
}
