include[HTML_REMOVED]
int main()
{
int a,b,c,d,x=0;
scanf(“%d %d %d %d”,&a,&b,&c,&d);
if(b<=c)
{
x=1;
}
if(d<=a)
{
x=1;
}
if(c+d<a+b)
{
x=1;
}
if(c<=0||d<=0)
{
x=1;
}
if(a%2!=0)
{
x=1;
}
if(x==1)
{
printf(“Valores nao aceitos”);
}
else if(x!=1)
{
printf(“Valores aceitos”);
}
return 0;
}