Why this code is not pass the test

#include
#include
using namespace std;

int main(){
int i,n;
int largest;
largest= INT_MIN;
i=1;
while (i<=3){
cin>>n;
if (largest<n)
largest = n;
i=i+1;
}
cout<<"the largest no is "<<largest;
cout<<endl;
return 0;
}

hi @pd05011982_f532147ff24db8fc remove this "the largest no is " just print the no only

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.