Help me in solving PPSC58 problem

My issue

it is showing the contest problem is not available for accepting solution on submission of program.

My code

#include <stdio.h>

int main() {

  int Age = 25;
  int Vage = 18;
  if(Age>=Vage)
  {
      printf("Old enough to vote!");
     
  }
  else
  {
      printf("Not old enough to vote.");
      
  }
  return 0;
}

Learning course: Programming using C
Problem Link: Practice Problem in - CodeChef