rustic-sysy/sysy_sets/15_mul.sy

7 lines
79 B
Plaintext
Raw Normal View History

2024-08-27 18:13:31 +08:00
//test mul
int main(){
int a, b;
a = 10;
b = 5;
return a * b;
}