Help me in solving LCPPCL97 problem

My issue

output was correct but it showing hidden test case

My code

//if condition is wrong it should be changed to n>5
#include <iostream>
using namespace std;

int main()
{
    int n;
    cin>>n;
    if(n<5)
    {
        cout<<"the number is greater than 5";
    }
    else
    {
        cout<<"the number is smaller than or equal to 5";
    }

    
}

Learning course: ATT - C++
Problem Link: https://www.codechef.com/learn/course/sit-att-cpp-new/SITCPP63/problems/LCPPCL97