CompilerSysY/testcases/functional_test/19_neg_expr.sy
2023-05-08 21:15:52 +08:00

11 lines
119 B
Plaintext

int a;
int b;
int main(){
a = getint();
b = getint();
int c;
c = -(a + b);
putint(c);
return 0;
}