#include <stdio.h>

int main( ) {
   int n;
   scanf("%d", &n);

   printf("antes\n");
   if (n > 10) {
      printf("caso verdadero\n");
   } else {
      printf("caso falso\n");
   }
   printf("despues\n");
}
