#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main() {
srand(time(NULL));
int ihtimal = rand()%100;

if(ihtimal>=90){
printf("Gerceklesti");}
else{
printf("gerceklesmedi");}
return 0;
}