SysYTestcases/functional_2021/020_mul.sy
ridethepig 13f3cb710a init
2023-05-16 00:56:56 +08:00

7 lines
79 B
Plaintext

//test mul
int main(){
int a, b;
a = 10;
b = 5;
return a * b;
}