HI so recently i was try to solve this codeforces question
Here’s the link : https://codeforces.com/problemset/problem/4/A
CAN I KNOW WHAT WRONG IN MY CODE:
#include
using namespace std;
int main(){
int weight;
cin>>weight;
int divide;
divide=weight/2;
if(weight==2){
cout<<“no”;
goto jump;
}
if(divide%2==0){
cout<<"yes";
}else{
cout<<"no";
}
jump:
return 0;
}