// For testing precedence and urnary minus

int main(){
int a;
int b;
int c;
int d;
a = (8 - 2) / 4;
b=1 + 2 * 3 - 4;
c=1 + 2 - 8 / 4;
return -1;
}
