Codehelp of this question

please give me code for this problem

#include<iostream>
#include<climits>
#include<algorithm>
using namespace std;
int main() {
    int largest = INT_MIN;
    for(int i=1;i<=3;i++){
        int no;
        cin>>no;
        largest = max(largest, no);
    }
    cout<<largest;
}

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.