002

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
int a,x,y,ok1,ok2;

int main(){
    a=100;
    x=20;
    y=20;
    ok1=5;
    ok2=0;
    if((x>y)||((y!=20)&&(ok1==0))&&(ok2!=0))
        a=1;
    else if((ok1!=0)&&(ok2==0))
        a=-1;
    else a=0;
    cout<<a<<endl;
    return 0;
}
Scroll to Top