#include "main.h" int bool() { int a; scanf("%d", &a); if (a >= 18) { printf("Vous etes majeur"); } else { printf("Vous etes mineur"); } return 0; }