//problem.c
#include <stdio.h>

int main() {
  int authentic = 0;
  int x, y, z;
  char buffer[11];
  gets(buffer);
  if(authentic){
    printf("access allowed!");
  } else{
    printf("access denied!");
  }
  return 0;
}