22 lines
393 B
C
22 lines
393 B
C
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#define PERTE 10000
|
|
#define NEURONES 1000000000
|
|
#define AGE 47
|
|
|
|
int main(void) {
|
|
|
|
int restant = NEURONES + (AGE * -PERTE);
|
|
|
|
if (restant < 99000000) {
|
|
printf("C'est mal parti !");
|
|
} else if (restant > NEURONES) {
|
|
printf("Comment as-tu fais pour en gagner ?");
|
|
} else {
|
|
printf("Ca devrait le faire.");
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|