6 lines
89 B
C++
6 lines
89 B
C++
|
// int Multiply(int a, int b)
|
||
|
// {
|
||
|
// int result = a * b;
|
||
|
// return result;
|
||
|
// }
|