Code solution won't work

#include<bits/stdc++.h>
using namespace std;

int main() {
int a,b,c;
int big = INT_MIN;

cout << "Enter the three numbers: "<< endl;
cin >> a;
cin >> b;
cin >> c;

if(big < a)
    big = a;
if(big < b)
    big = b;
if(big < c)
    big = c;

cout << big << endl;	
return 0;

}

I have checked all the test cases they are working perfectly in vsCode, but the same test case won’t work on codeblocks compiler

hi @vinayakparashar38, buddy remove
cout << "Enter the three numbers: "<< endl;
u dont need to print all these