mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
4 lines
49 B
C++
4 lines
49 B
C++
int multiply(int a, int b)
|
|
{
|
|
return a * b;
|
|
}
|