SysY2022/test_cases/functional/11_add2.sy

7 lines
80 B

//test add
int main(){
int a, b;
a = 10;
b = -1;
return a + b;
}