Help me in solving CLB064 problem

My issue

My codes are similar with solutin code but why there are having wrong answers syntax

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: Learn C
Problem Link: CodeChef: Practical coding for everyone

@afreen_suhana
your code is working absolutely fine.

Your Code is working fine without any error.