13 lines
208 B
C
13 lines
208 B
C
![]() |
#include<stdlib.h>
|
|||
|
#include<stdio.h>
|
|||
|
#include<time.h>
|
|||
|
|
|||
|
int main(void) {
|
|||
|
srand(time(NULL));
|
|||
|
if (rand()%2) {
|
|||
|
printf("Ϳоie !\n");
|
|||
|
} else {
|
|||
|
printf("Désespoir !\n");
|
|||
|
}
|
|||
|
return EXIT_SUCCESS;
|
|||
|
}
|