4 lines
47 B
Text
4 lines
47 B
Text
|
|
int multiply(int a, int b){
|
||
|
|
return a * b;
|
||
|
|
}
|