#include <stdio.h>

//Compiler version gcc  6.3.0

int main(void)
{
  int a;
  puts("This is a guessing game.\nThe rule are simple:just try to guess the number: ");
  scanf("%d", &a);
  
  while (a != 386) {
    a < 386 ? puts("Too low") : puts("Too high");
    scanf("%d", &a);
  }
  
 puts("Congratulation, you actually did it XD");
 
}