Help me in solving WATERCONS problem

My issue

I am applying if else condition but it is showing wrong ans

My code

#include <iostream>
using namespace std;

int main() {
	int X ;
	cin>>X;
	cout<<X;
	if(X>=2000){
	    cout<<"Yes"<<endl;
	}
	else{
	    cout<<"No"<<endl;
	}
	return 0;
}

Learning course: Practice C++
Problem Link: CodeChef: Practical coding for everyone

@visheshta67
Why are u doing cout<<x???

Ohh shit… by mistake I did it
Thanku