#include <stdio.h>
int main(){
int price=97,gue;
printf("please enter a number:\n");
scanf("%d",&gue);
if(gue<price){
printf("You guess the number is small\n");
}
if(gue>price){
printf("You guess the numnber is big\n");
}
if(gue==price)
{
printf("You have guessed it \n");
}
return 0;
}